-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.05 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{
"description": "A web app displaying a map and info on National Parks in Oregon.",
"scripts": {
"clean": "del-cli dist/*",
"lint": "tsc --noEmit && tslint --project . src/**/*.ts",
"typewatch": "tsc --watch --noEmit",
"start": "parcel serve src/index.pug --port 3000",
"predevbuild": "npm run clean",
"devbuild": "parcel build src/index.pug --no-minify",
"prebuild": "npm run clean && npm run lint",
"build": "parcel build src/index.pug --experimental-scope-hoisting --public-url ./"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/noahbrenner/national-parks.git"
},
"dependencies": {
"@mdi/js": "~3.9.97",
"axios": "~0.19.2",
"knockout": "~3.5.1",
"sanitize.css": "~7.0.3"
},
"devDependencies": {
"@types/googlemaps": "~3.39.11",
"@types/node": "~14.0.27",
"autoprefixer": "~9.8.5",
"del-cli": "~3.0.1",
"node-sass": "~4.14.1",
"parcel-bundler": "~1.12.4",
"pug": "~3.0.0",
"tslint": "~5.20.0",
"typescript": "~3.9.7"
}
}