forked from sidx1024/deck.gl
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.16 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.16 KB
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
{
"scripts": {
"start": "webpack-dev-server --progress --hot --open --content-base static",
"start-local": "webpack-dev-server --env.local --progress --hot --open --content-base static",
"build-clean": "rm -rf dist && mkdir dist",
"build-copy": "cp -r static/* dist",
"build-script": "NODE_ENV=production webpack --env.prod=true",
"build": "npm run build-clean && npm run build-script && npm run build-copy"
},
"dependencies": {
"babel-polyfill": "^6.16.0",
"d3-request": "^1.0.3",
"d3-voronoi": "^1.1.1",
"deck.gl": "^5.0.0",
"prop-types": "^15.6.0",
"react": "^16.2.0",
"react-autobind": "^1.0.6",
"react-dom": "^16.2.0",
"react-map-gl": "^3.2.0",
"tween.js": "^16.6.0"
},
"devDependencies": {
"babel-core": "^6.21.0",
"babel-loader": "^6.2.10",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-2": "^6.18.0",
"brfs-babel": "^1.0.0",
"buble-loader": "^0.4.0",
"transform-loader": "^0.2.3",
"webpack": "^2.6.1",
"webpack-dev-server": "^2.4.5"
},
"babel": {
"presets": [
"es2015",
"stage-2",
"react"
]
}
}