-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.41 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
45
46
47
48
49
50
{
"dsccViz": {
"gcsDevBucket": "gs://",
"gcsProdBucket": "gs://",
"jsFile": "index.js",
"jsonFile": "index.json",
"cssFile": "index.css",
"print": "printMessage.js"
},
"scripts": {
"build:dev": "NODE_ENV=production node scripts/build.js dev",
"build:prod": "NODE_ENV=production node scripts/build.js prod",
"push:dev": "dscc-scripts viz push -d dev",
"push:prod": "dscc-scripts viz push -d prod",
"update_message": "dscc-scripts viz update_message -f object",
"start": "dscc-scripts viz start",
"deploy:dev": "yarn build:dev && yarn push:dev",
"deploy:prod": "yarn build:prod && yarn push:prod"
},
"devDependencies": {
"@babel/core": "^7.5.0",
"@babel/preset-env": "^7.5.0",
"@babel/preset-react": "^7.0.0",
"@google/dscc": "^0.3.8",
"@google/dscc-scripts": "^1.0.7",
"babel-loader": "^8.0.6"
},
"dependencies": {
"serialize-javascript": ">=2.1.1",
"@emotion/core": "^10.0.14",
"@nivo/calendar": "^0.61.1",
"@nivo/chord": "^0.61.1",
"@nivo/radar": "^0.61.1",
"clean-css": "^4.1.11",
"d3-format": "^1.4.3",
"d3-webpack-loader": "^0.1.1",
"lodash.template": "^4.5.0",
"prop-types": "^15.7.2",
"radar-chart": "^1.0.6",
"react": "^16.8.6",
"react-d3-library": "^1.1.8",
"react-dom": "^16.8.6"
},
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-react"
]
}
}