-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.57 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.57 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
{
"scripts": {
"start": "BUILD_DEV=1 npm install && node server.js",
"start_windows": "set BUILD_DEV=1&&npm install && node server.js",
"build": "BUILD_DEV=0 NODE_ENV=production webpack -p --config webpack.config.production.js && cp index.html favicon.ico dist",
"build_windows": "set BUILD_DEV=0&&set NODE_ENV=production&&webpack -p --config webpack.config.production.js && cp index.html favicon.ico dist",
"deploy": "cp index.html favicon.ico dist && surge -p dist -d wallfly.surge.sh",
"lint": "eslint ."
},
"devDependencies": {
"autoprefixer-loader": "2.0.0",
"babel-core": "5.8.5",
"babel-eslint": "3.1.26",
"babel-loader": "5.3.2",
"babel-plugin-object-assign": "1.2.1",
"babel-runtime": "5.8.5",
"css-loader": "0.15.5",
"eslint": "0.24.1",
"eslint-plugin-react": "3.0.0",
"file-loader": "0.8.4",
"image-webpack-loader": "1.6.1",
"imagemin": "3.2.1",
"json-loader": "0.5.3",
"node-sass": "3.4.2",
"react-hot-loader": "1.2.8",
"sass-loader": "1.0.3",
"style-loader": "0.12.3",
"webpack": "1.10.5",
"webpack-dev-server": "1.10.1"
},
"dependencies": {
"axios": "0.5.4",
"fixed-data-table": "0.4.7",
"flux": "2.0.3",
"fuzzy": "0.1.1",
"joi": "6.7.1",
"material-ui": "0.11.0",
"moment": "2.10.5",
"radium": "0.14.1",
"raf": "3.1.0",
"react": "0.13.3",
"react-cookie": "0.3.4",
"react-day-picker": "1.0.3",
"react-kronos": "0.3.1",
"react-router": "1.0.0-beta3",
"react-sidebar": "1.0.3",
"react-tap-event-plugin": "0.1.7"
}
}