forked from dennybritz/neal-sample
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.29 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
{
"name": "CoAXs-Landing-Page",
"version": "0.1.0",
"description": "CoAXs Landing Page",
"repository": "https://github.com/mitTransportAnalyst/CoAXs-Landing-Page",
"main": "js/app.js",
"scripts": {
"start": "node server.js",
"startdev": "webpack-dev-server --content-base public/ --history-api-fallback",
"watch": "webpack --watch",
"serve": "webpack-dev-server --content-base public/ --history-api-fallback",
"build": "webpack -p",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint --ext js,jsx ."
},
"author": "Xin Zheng",
"license": "ISC",
"dependencies": {
"express": "^4.15.2",
"neal-react": "^0.2.3",
"path": "^0.12.7",
"react": "^0.14.7",
"react-dom": "^0.14.7",
"react-router": "^2.0.0-rc5"
},
"devDependencies": {
"babel-core": "^6.5.2",
"babel-eslint": "^4.1.8",
"babel-loader": "^6.2.2",
"babel-plugin-syntax-class-properties": "^6.5.0",
"babel-preset-es2015": "^6.5.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"css-loader": "^0.23.1",
"eslint": "^2.0.0",
"eslint-config-defaults": "^9.0.0",
"node-sass": "^3.4.2",
"sass-loader": "^3.1.2",
"style-loader": "^0.13.0",
"webpack": "^1.12.13",
"webpack-dev-server": "^1.14.1"
}
}