-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.63 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.63 KB
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
{
"name": "exam",
"version": "0.0.0",
"private": true,
"scripts": {
"build-dev": "set DEBUG=exam&&set NODE_ENV=development&&webpack --progress -w --config webpack/webpack.config.js",
"build-prod": "rm -rf ./public && set DEBUG= &&set NODE_ENV=production&&webpack -p --progress --config webpack/webpack.config.js",
"build-prod-mac": "rm -rf ./public && export DEBUG= && export NODE_ENV=production && webpack -p --progress --config webpack/webpack.config.js",
"dev": "set DEBUG=exam&&set NODE_ENV=development&&supervisor -w server,components -e js,jsx -- ./bin/www",
"dev-mac": "export DEBUG=exam && export NODE_ENV=development && supervisor -w server,components -e js,jsx -- ./bin/www",
"dev-api": "set PORT=3001&&set DEBUG=exam&&set NODE_ENV=development&&set API=true&&supervisor -w server -e js -- ./bin/www",
"dev-api-mac": "export PORT=3001 && export DEBUG=exam && export NODE_ENV=development && export API=true && supervisor -w server -e js -- ./bin/www",
"start": "export PORT=80 && set DEBUG=exam &&set NODE_ENV=production&&supervisor -w bin -- ./bin/www",
"start-mac": "export PORT=80 && export DEBUG=exam && export NODE_ENV=production && supervisor -w bin -- ./bin/www"
},
"dependencies": {
"babel-register": "^6.4.3",
"body-parser": "~1.13.2",
"bootstrap": "^3.3.6",
"classnames": "^2.2.3",
"compression": "^1.6.1",
"cookie-parser": "~1.3.5",
"debug": "~2.2.0",
"es6-promise": "^3.1.2",
"express": "~4.13.1",
"express-jwt": "^3.3.0",
"fastclick": "^1.0.6",
"history": "^2.0.0-rc2",
"jsonwebtoken": "^5.7.0",
"lodash": "^4.6.1",
"mongoose": "^4.4.1",
"morgan": "~1.6.1",
"normalize.css": "^3.0.3",
"q": "^1.4.1",
"q-io": "^1.13.2",
"querystring": "^0.2.0",
"react": "^0.14.7",
"react-dom": "^0.14.7",
"react-engine": "^3.1.0",
"react-router": "^2.0.0-rc5",
"serve-favicon": "~2.3.0",
"webpack-isomorphic-tools": "^2.2.26",
"whatwg-fetch": "^0.11.0"
},
"devDependencies": {
"autoprefixer": "^6.3.6",
"babel": "^6.3.26",
"babel-core": "^6.4.5",
"babel-loader": "^6.2.1",
"babel-plugin-transform-runtime": "^6.6.0",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-preset-stage-0": "^6.5.0",
"babel-runtime": "^6.6.1",
"css-loader": "^0.23.1",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.8.5",
"glob": "^6.0.4",
"json-loader": "^0.5.4",
"less": "^2.6.0",
"less-loader": "^2.2.2",
"postcss-loader": "^0.8.2",
"precss": "^1.4.0",
"style-loader": "^0.13.0",
"url-loader": "^0.5.7",
"webpack": "^1.12.12"
}
}