-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
49 lines (49 loc) · 1.59 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
{
"name": "gtfs-graph",
"version": "0.0.1",
"description": "Graph algorithms for transit schedules",
"private": "true",
"engines": {
"node": "7.2.1"
},
"scripts": {
"test": "mocha --timeout 45000",
"build-js": "browserify -p [ factor-bundle -o public/bundle/demo.js -o public/bundle/nyc.js -o public/bundle/boston.js -o public/bundle/paris.js -o public/bundle/dc.js -o public/bundle/dcp.js ] public/demo/app.js public/rank/nyc/nyc.js public/rank/boston/boston.js public/rank/paris/paris.js public/rank/dc/dc.js public/rank/dcp/dcp.js > public/bundle/common.js -t [ babelify --presets [ react es2015 ] ]",
"start": "node lib/server/index.js",
"all": "npm run build-js && npm start"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tyleragreen/gtfs-graph.git"
},
"author": "Tyler A. Green",
"license": "ISC",
"dependencies": {
"async": "^2.0.0-rc.6",
"babel-preset-es2015": "^6.13.2",
"babel-preset-react": "^6.11.1",
"babelify": "^7.3.0",
"body-parser": "^1.15.2",
"bower": "^1.7.9",
"browserify": "^13.0.1",
"classnames": "^2.2.5",
"express": "^4.14.0",
"factor-bundle": "^2.5.0",
"mapbox-gl": "^0.21.0",
"minimist": "^1.2.0",
"node-enums": "^1.0.1",
"react": "^15.3.0",
"react-addons-update": "^15.3.0",
"react-dom": "^15.3.0",
"react-onclickoutside": "^5.3.3",
"socket.io": "^1.4.6",
"socket.io-client": "^1.4.8",
"transit-tools": "^1.0.0",
"winston": "^2.2.0"
},
"devDependencies": {
"chai": "^3.5.0",
"geojsonio-cli": "^0.2.0",
"mocha": "^3.2.0"
}
}