-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.03 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "divvy-viz",
"version": "0.0.1",
"description": "Visualizations for Chicago Divvy bike system.",
"main": "src/app.js",
"license": "MIT",
"engines": {
"node": "7.6.0",
"npm": "4.1.2",
"yarn": "0.20.3"
},
"scripts": {
"clean": "rimraf dist",
"format": "prettier --single-quote --semi false --write \"{server,src}/**/*.js\"",
"build": "npm run clean && npm run format && webpack --progress",
"build:prod": "npm run clean && webpack -p",
"start": "npm run build && npm run server",
"start:prod": "npm run build:prod && npm run server",
"start:dev": "webpack-dev-server --progress --hot --port 8000",
"server": "node ./server",
"lint-staged": "lint-staged",
"precommit": "lint-staged",
"postinstall": "npm run build"
},
"dependencies": {
"JSONStream": "^1.3.1",
"babel-core": "^6.24.1",
"babel-loader": "^6.4.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"bootstrap": "^3.3.7",
"chroma-js": "^1.3.3",
"css-loader": "^0.28.0",
"cssrecipes-defaults": "^0.5.0",
"csv": "^1.1.1",
"deck.gl": "^4.0.3",
"dsv-loader": "^2.0.0",
"file-loader": "^0.11.1",
"husky": "^0.13.3",
"immutable": "^3.8.1",
"koa": "^2.2.0",
"koa-route": "^3.2.0",
"koa-static": "^3.0.0",
"lint-staged": "^3.4.0",
"lodash": "^4.17.4",
"luma.gl": "^3.0.1",
"normalize.css": "^6.0.0",
"postcss-loader": "^1.3.3",
"postcss-smart-import": "^0.6.11",
"prettier": "^1.2.2",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"react-map-gl": "^1.8.2",
"rimraf": "^2.6.1",
"streaming-json-stringify": "^3.1.0",
"style-loader": "^0.16.1",
"url-loader": "^0.5.8",
"webpack": "^2.4.1",
"webpack-dev-server": "^2.4.2",
"whatwg-fetch": "^2.0.3"
},
"babel": {
"presets": [
"es2015",
"stage-2",
"react"
]
},
"lint-staged": {
"*.js": [
"prettier --single-quote --semi false --write",
"git add"
]
}
}