-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
89 lines (89 loc) · 2.19 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
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "hammerheadInterview",
"version": "0.0.1",
"description": "web application to find shortest path in newyork city",
"keywords": [
"OSM",
"reactJS",
"leaflet"
],
"homepage": "hammerheadinterview.com",
"bugs": {
"email": "diwaakartg@gmail.com"
},
"license": "open source",
"repository": {
"type": "git"
},
"engines": {
"node": ">= 5.5.0"
},
"babel": {
"presets": [
"es2015",
"react"
]
},
"scripts": {
"start": "node ./bin/www",
"test": "mocha --compilers js:espower-babel/guess test/*.js"
},
"dependencies": {
"async": "~2.0.0-rc.4",
"aws-sdk": "~2.3.11",
"babel-core": "~6.8.0",
"babel-polyfill": "^6.8.0",
"babel-preset-es2015": "~6.6.0",
"babel-preset-react": "~6.5.0",
"babel-register": "^6.8.0",
"body-parser": "^1.15.1",
"connect-flash": "^0.1.1",
"cookie-parser": "^1.4.1",
"express": "^4.13.4",
"express-session": "^1.13.0",
"form-data": "^1.0.0-rc4",
"flexboxgrid": "^6.3.0",
"isomorphic-fetch": "^2.2.1",
"jade": "^1.11.0",
"less-middleware": "^2.1.0",
"material-ui": "^0.15.0",
"moment": "^2.13.0",
"mongoose": "^4.4.17",
"morgan": "~1.7.0",
"multer": "^1.1.0",
"node-dijkstra": "^2.2.1",
"passport": "^0.3.2",
"passport-oauth2": "^1.3.0",
"react": "~15.0.2",
"react-dom": "15.0.2",
"react-redux": "^4.4.5",
"react-router": "^2.4.0",
"react-router-redux": "^4.0.4",
"react-tap-event-plugin": "^1.0.0",
"redux": "^3.5.2",
"redux-form": "^5.2.3",
"redux-logger": "^2.6.1",
"redux-thunk": "^2.1.0",
"request": "^2.72.0",
"socket.io": "^1.4.6",
"socket.io-client": "^1.4.6"
},
"devDependencies": {
"babelify": "^7.3.0",
"espower-babel": "^4.0.3",
"gitbook-cli": "^2.1.3",
"grunt": "^1.0.1",
"grunt-browserify": "^5.0.0",
"grunt-cli": "^1.2.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-jshint": "^1.0.0",
"grunt-contrib-watch": "^1.0.0",
"grunt-gitbook": "^1.5.0",
"grunt-jscs": "^2.8.0",
"grunt-jsdoc": "^2.0.0",
"mocha": "^2.4.5",
"power-assert": "^1.4.1",
"reactify": "~1.1.1",
"redux-devtools": "^3.3.1"
}
}