-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
101 lines (101 loc) · 2.74 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
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "",
"version": "0.0.0",
"scripts": {
"clean": "rm -rf dist",
"build": "npm run clean && npm run build:webpack",
"build:webpack": "NODE_ENV=production babel-node bin/build",
"preview": "npm run build && npm run prod",
"prod": "NODE_ENV=production npm run start:app",
"start:app": "node bin/start --app",
"start:api": "node bin/start --api",
"start": "npm run start:app & npm run start:api & wait",
"lint": "eslint src webpack bin",
"pm2:setup": "pm2 deploy ecosystem.json production setup",
"deploy": "pm2 deploy ecosystem.json production"
},
"babel": {
"presets": [
"react",
"es2015",
"stage-0"
],
"plugins": [
"transform-decorators-legacy"
]
},
"eslintConfig": {
"extends": [
"zavatta",
"zavatta-react"
],
"globals": {
"Promise": false,
"io": false
}
},
"dependencies": {
"async": "^2.0.0-rc.4",
"body-parser": "^1.15.1",
"chalk": "^1.1.3",
"classnames": "^2.2.5",
"clipboard": "^1.5.10",
"compression": "^1.6.1",
"d3": "^3.5.17",
"dotenv": "^2.0.0",
"express": "^4.13.4",
"lodash": "^4.12.0",
"moment": "^2.13.0",
"mongoose": "^4.4.16",
"morgan": "^1.7.0",
"node-schedule": "^1.1.0",
"node-vibrant": "^2.1.2",
"postcss-import": "^8.0.2",
"q": "^1.4.1",
"react": "^15.0.2",
"react-addons-css-transition-group": "^15.0.2",
"react-dom": "^15.0.2",
"react-pure-render": "^1.0.2",
"react-redux": "^4.4.5",
"react-router": "^2.4.0",
"react-router-redux": "^4.0.4",
"redial": "^0.4.1",
"redux": "^3.5.2",
"redux-actions": "^0.9.1",
"redux-thunk": "^2.1.0",
"shortid": "^2.2.6",
"socket.io": "^1.4.6",
"superagent": "^1.8.3"
},
"devDependencies": {
"app-module-path": "^1.0.6",
"autoprefixer": "^6.3.6",
"babel-cli": "^6.8.0",
"babel-core": "^6.8.0",
"babel-eslint": "^6.0.4",
"babel-loader": "^6.2.4",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-polyfill": "^6.8.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-react-hmre": "^1.1.1",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.8.0",
"css-loader": "^0.23.1",
"eslint": "2.9.0",
"eslint-config-zavatta": "^3.0.2",
"eslint-config-zavatta-react": "^1.2.3",
"eslint-plugin-react": "^5.1.1",
"extract-text-webpack-plugin": "^1.0.1",
"piping": "^0.3.1",
"postcss-import": "8.0.2",
"postcss-loader": "^0.9.1",
"precss": "^1.4.0",
"style-loader": "^0.13.1",
"webpack": "2.1.0-beta.4",
"webpack-dev-middleware": "^1.6.1",
"webpack-hot-middleware": "^2.10.0",
"webpack-stats-plugin": "^0.1.1"
},
"private": true
}