This repository has been archived by the owner on Jul 5, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.84 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
{
"name": "SoundOff",
"version": "0.0.1",
"description": "A Stand-Up / Stand-Down Reporting Utility.",
"main": "server/server.js",
"scripts": {
"serve": "node .",
"lint": "eslint ./",
"lint:client": "eslint ./client",
"lint:server": "eslint ./server",
"serve:dist": "NODE_ENV=production node .",
"dist": "NODE_ENV=production webpack -p --config webpack.config.production.js --progress",
"clean": "rm -rf .build/dist"
},
"dependencies": {
"compression": "^1.6.1",
"cors": "^2.7.1",
"history": "^2.1.1",
"humps": "^1.1.0",
"isomorphic-fetch": "^2.2.1",
"json-loader": "^0.5.4",
"loopback": "^2.28.0",
"loopback-boot": "^2.18.1",
"loopback-component-explorer": "^2.5.0",
"loopback-datasource-juggler": "^2.46.0",
"material-ui": "^0.15.0",
"react": "^15.0.2",
"react-dom": "^15.0.2",
"react-redux": "^4.4.5",
"react-router": "^2.4.0",
"react-router-redux": "^4.0.4",
"react-tap-event-plugin": "^1.0.0",
"redux": "^3.5.2",
"serve-favicon": "^2.3.0"
},
"devDependencies": {
"babel-core": "^6.8.0",
"babel-loader": "^6.2.4",
"babel-plugin-react-transform": "^2.0.2",
"babel-polyfill": "^6.8.0",
"babel-preset-airbnb": "^2.0.0",
"concurrently": "^2.0.0",
"css-loader": "^0.23.1",
"eslint": "^2.9.0",
"eslint-config-airbnb": "^8.0.0",
"eslint-plugin-import": "^1.7.0",
"eslint-plugin-jsx-a11y": "^1.2.0",
"eslint-plugin-react": "^5.0.1",
"extract-text-webpack-plugin": "^1.0.1",
"html-webpack-plugin": "^2.16.1",
"react-css-modules": "^3.7.6",
"react-transform-hmr": "^1.0.4",
"redux-devtools": "^3.2.0",
"resolve-url": "^0.2.1",
"sass-loader": "^3.2.0",
"style-loader": "^0.13.1",
"webpack": "^1.13.0",
"webpack-dev-middleware": "^1.6.1",
"webpack-hot-middleware": "^2.10.0"
}
}