forked from dcposch/yimby
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.54 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.54 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
42
43
44
45
46
47
48
49
50
51
{
"name": "yimby",
"version": "0.0.0",
"description": "hack the planet / legalize housing",
"main": "index.js",
"author": "DC Posch",
"license": "ISC",
"repository": "https://github.com/dcposch/yimby",
"dependencies": {
"babel-polyfill": "^6.20.0",
"deck.gl": "^4.0.0",
"eslint": "^3.19.0",
"eslint-config-standard": "^10.2.1",
"eslint-config-standard-react": "^5.0.0",
"eslint-plugin-import": "^2.3.0",
"eslint-plugin-node": "^5.0.0",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-react": "^7.0.1",
"eslint-plugin-standard": "^3.0.1",
"immutable": "^3.8.1",
"luma.gl": "^3.0.0",
"prop-types": "^15.5.10",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"react-map-gl": "^1.7.2"
},
"devDependencies": {
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-2": "^6.18.0",
"babelify": "^7.3.0",
"browserify": "^13.3.0",
"node-static": "^0.7.9",
"standard": "*",
"uglify-js": "^2.7.5",
"watchify": "^3.8.0"
},
"scripts": {
"start": "yarn run test && yarn run watch & (cd static && static -z --cache false .)",
"build": "rm -rf static/build && mkdir static/build && ./scripts/process-data.js && yarn run browserify",
"watch": "watchify -t babelify src/app.js -o static/build/bundle.js -v",
"browserify": "NODE_ENV=production browserify -t babelify src/app.js | uglifyjs -c -m > static/build/bundle.js",
"test": "standard"
},
"babel": {
"presets": [
"react",
"es2015"
]
}
}