-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
69 lines (69 loc) · 2.23 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
{
"name": "ridership",
"version": "1.0.0",
"description": "Transit Insights",
"main": "index.js",
"scripts": {
"dev": "node_modules/.bin/webpack-dev-server --hot --inline",
"build": "node_modules/.bin/webpack -p --config webpack.config.prod.js && npm run build:story",
"build:story": "cd story && npm run build && cp -r dist/ ../dist/story",
"postinstall": "cd story && npm install",
"data": "npm run data:meta && npm run data:clean && npm run data:tracts",
"data:clean": "python bin/ntd.py",
"data:meta": "python bin/meta.py",
"data:census": "python bin/acs.py",
"data:tiles": "python bin/meta.py && ./bin/tiles.sh",
"data:tracts": "./bin/tracts.sh && ./bin/stops.sh && python bin/buffer.py",
"data:transit": "python bin/transit.py",
"deploy": "./bin/deploy.sh",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/axismaps/ridership.git"
},
"author": "Axis Maps",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/axismaps/ridership/issues"
},
"engines": {
"node": "10"
},
"homepage": "https://github.com/axismaps/ridership#readme",
"devDependencies": {
"@babel/core": "^7.1.5",
"@babel/preset-env": "^7.1.5",
"babel-loader": "^8.0.4",
"babel-polyfill": "^6.26.0",
"copy-webpack-plugin": "^4.6.0",
"css-loader": "^1.0.1",
"documentation": "^8.1.2",
"eslint": "^5.8.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-loader": "2.1.0",
"eslint-plugin-html": "^4.0.6",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jest": "^21.27.1",
"file-loader": "^5.0.2",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"jest": "^23.6.0",
"mini-css-extract-plugin": "^0.4.4",
"node-sass": "^4.10.0",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"webpack": "^4.25.1",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.3.0"
},
"dependencies": {
"@fortawesome/fontawesome-pro": "^5.5.0",
"d3": "^5.7.0",
"d3-selection-multi": "^1.0.1",
"mapbox-gl": "^0.52.0-beta.1",
"topojson-client": "^3.0.0",
"topojson-simplify": "^3.0.2"
}
}