-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 873 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 873 Bytes
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
{
"name": "doma.play",
"version": "0.0.0",
"scripts": {
"start": "concurrently -n \"WEBPACK,FLASK\" -c \"bgBlue.bold,bgGreen.bold\" \"npm run webpack\" \"npm run flask\"",
"build": "NODE_ENV=production webpack --progress --colors -p",
"webpack": "webpack --watch --progress",
"flask": "FLASK_DEBUG=1 python app.py"
},
"dependencies": {
"@babel/polyfill": "^7.0.0",
"chart.js": "^2.8.0",
"dat.gui": "^0.7.6",
"three": "^0.97.0",
"uuid": "^3.3.2"
},
"devDependencies": {
"@babel/core": "^7.0.0-beta.39",
"@babel/plugin-proposal-class-properties": "^7.0.0-beta.42",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0-beta.42",
"@babel/preset-env": "^7.0.0-beta.39",
"@babel/preset-react": "^7.0.0-beta.39",
"babel-loader": "^8.0.0-beta.0",
"concurrently": "^3.5.0",
"webpack": "^2.6.1"
}
}