-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.12 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
{
"name": "roadtrip",
"version": "1.0.0",
"description": "Lists best stops along a route.",
"main": "index.js",
"scripts": {
"concurrently": "concurrently",
"webpack-watch": "webpack -d --watch",
"express-server": "node ./server",
"dev": "concurrently --kill-others \"npm run webpack-watch\" \"npm run express-server\"",
"prod": "NODE_ENV='production' webpack -p",
"test": "echo \"Error: no test specified\" && exit 1",
"start": "concurrently --kill-others \"npm run prod\" \"npm run express-server\""
},
"author": "Joy Zhong",
"license": "ISC",
"dependencies": {
"babel-loader": "^6.2.4",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-es2015": "^6.13.2",
"babel-preset-react": "^6.11.1",
"concurrently": "^2.2.0",
"express": "^4.14.0",
"react": "^15.3.0",
"react-autosuggest": "^9.3.4",
"react-dom": "^15.3.0",
"socket.io": "^1.4.8",
"webpack": "^1.13.1",
"yelp": "^1.0.1",
"yelp-fusion": "^2.0.3"
},
"devDependencies": {
"html-webpack-plugin": "^2.30.1"
},
"engines": {
"node": "5.0.0",
"npm": "3.3.6"
}
}