-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
74 lines (74 loc) · 1.91 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
{
"name": "megaboilerplate",
"private": true,
"version": "1.0.0",
"scripts": {
"build": "webpack --config webpack.config.prod.js --display-error-details",
"start": "node server.js",
"test": "mocha --recursive --compilers js:babel-register",
"postinstall": "npm run build"
},
"dependencies": {
"archiver": "^1.0.0",
"azure-storage": "^0.10.0",
"babel-core": "^6.8.0",
"babel-eslint": "^6.0.4",
"babel-loader": "^6.2.4",
"babel-plugin-react-transform": "^2.0.2",
"babel-polyfill": "^6.8.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"bluebird": "^3.3.5",
"body-parser": "^1.15.0",
"classnames": "^2.2.5",
"compression": "^1.6.1",
"cpy": "^4.0.0",
"dotenv": "^2.0.0",
"eslint": "^2.9.0",
"eslint-config-airbnb": "^8.0.0",
"eslint-plugin-babel": "^3.2.0",
"eslint-plugin-react": "^5.0.1",
"express": "^4.13.4",
"fs-extra": "^0.30.0",
"haikunator": "^1.2.0",
"lodash": "^4.11.2",
"moment": "^2.13.0",
"morgan": "^1.7.0",
"node-schedule": "^1.1.0",
"nunjucks": "^2.4.2",
"pm2": "^1.1.3",
"postcss-cssnext": "^2.6.0",
"postcss-import": "^8.1.2",
"postcss-middleware": "^1.1.2",
"raw-loader": "^0.5.1",
"react": "^15.0",
"react-dom": "15.0",
"react-router": "^2.4.0",
"react-transform-catch-errors": "^1.0.2",
"react-transform-hmr": "^1.0.4",
"redbox-react": "^1.2.4",
"shortid": "^2.2.6",
"sweetalert": "^1.1.3",
"traverse": "^0.6.6",
"velocity": "^0.7.2",
"velocity-react": "^1.1.5",
"webpack": "^1.13.0",
"webpack-dev-middleware": "^1.6.1",
"webpack-hot-middleware": "^2.10.0"
},
"babel": {
"presets": [
"react",
"es2015",
"stage-0"
]
},
"engines": {
"node": "6.1.0"
},
"devDependencies": {
"chai": "^3.5.0",
"mocha": "^2.5.3"
}
}