-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.28 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
36
37
38
39
40
41
42
43
44
{
"name": "dac-viz",
"dependencies": {
"@justfixnyc/util": "^0.1.1-alpha.0",
"@types/mapbox-gl": "^2.7.6",
"@types/node": "^14.14.8",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"concurrently": "^5.3.0",
"dotenv": "^12.0.3",
"flat": "^5.0.2",
"mapbox-gl": "^2.10.0",
"parcel-bundler": "^1.12.4",
"parcel-plugin-static-files-copy": "^2.5.0",
"pg": "^8.5.1",
"pg-promise": "^10.8.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-mapbox-gl": "^5.1.1",
"react-router-dom": "^6.4.2",
"react-use-cookie": "^1.3.0",
"source-map-support": "^0.5.19",
"typescript": "^4.5.4"
},
"license": "BSD-3-Clause",
"staticFiles": {
"staticPath": "static",
"watcherGlob": "**"
},
"scripts": {
"parcel": "parcel",
"build-data": "tsc --build tsconfig-nodejs.json && node build-data.js",
"watch": "concurrently --kill-others \"parcel index.html\" \"tsc --build tsconfig-nodejs.json --watch --preserveWatchOutput\"",
"build": "tsc --build tsconfig-nodejs.json && parcel build index.html --public-url=./",
"deploy": "yarn build && gh-pages -d dist"
},
"browserslist": [
"last 1 Chrome version"
],
"devDependencies": {
"@types/flat": "^5.0.1",
"gh-pages": "^3.1.0"
}
}