-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.7 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.7 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
52
53
54
{
"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": {
"deck.gl": "^6.1.0",
"immutable": "^3.8.2",
"luma.gl": "^6.1.0",
"prop-types": "^15.6.2",
"react": "^16.5.1",
"react-dom": "^16.5.1",
"react-map-gl": "^3.3.4"
},
"devDependencies": {
"@babel/core": "^7.0.1",
"@babel/polyfill": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"babelify": "^10.0.0",
"browserify": "^16.2.2",
"eslint": "^5.6.0",
"eslint-config-standard": "^12.0.0",
"eslint-config-standard-react": "^7.0.2",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-react": "^7.11.1",
"eslint-plugin-standard": "^4.0.0",
"mkdirp": "^0.5.1",
"node-static": "^0.7.9",
"standard": "*",
"uglify-js": "^3.4.9",
"watchify": "^3.8.0"
},
"scripts": {
"start": "npm run test && npm run watch & npm run serve",
"serve": "cd static && static -z --cache false .",
"build": "rm -rf static/build && mkdir static/build && cp node_modules/mapbox-gl/dist/mapbox-gl.css static/build/ && npm run browserify",
"build-data": "node ./scripts/process-data.js",
"watch": "mkdirp static/build && 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": [
"@babel/preset-env",
"@babel/preset-react"
]
}
}