-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.97 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.97 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
{
"scripts": {
"clean": "rimraf ./bin && rimraf ./static",
"prestart": "npm run clean",
"start": "npm run build && node ./bin/server",
"build": "npm run build:client && npm run build:server",
"build:client": "webpack --config ./webpack/client.config.babel.js",
"build:server": "webpack --config ./webpack/server.config.babel.js",
"lint": "npm run lint:src && npm run lint:webpack",
"lint:src": "eslint \"./src/**\"; exit 0",
"lint:webpack": "eslint \"./webpack/**\"; exit 0"
},
"dependencies": {
"autoprefixer": "^6.7.0",
"babel-core": "^6.22.1",
"babel-loader": "^6.2.5",
"babel-plugin-module-resolver": "^2.4.0",
"babel-polyfill": "^6.16.0",
"babel-preset-es2015": "^6.22.0",
"babel-preset-es2016": "^6.22.0",
"babel-preset-es2017": "^6.22.0",
"babel-preset-react": "^6.22.0",
"babel-preset-stage-0": "^6.22.0",
"bootstrap": "^4.0.0-alpha.4",
"compression": "^1.6.2",
"copy-webpack-plugin": "^4.0.0",
"css-loader": "^0.26.1",
"express": "^4.14.0",
"file-loader": "^0.9.0",
"font-awesome": "^4.6.3",
"immutable": "^3.8.1",
"moment": "^2.17.1",
"node-sass": "^4.3.0",
"postcss-loader": "^1.2.2",
"react": "^15.3.1",
"react-dom": "^15.3.1",
"react-fontawesome": "^1.2.0",
"react-hot-loader": "^3.0.0-beta.4",
"react-modal": "^1.6.5",
"react-redux": "^5.0.2",
"react-router": "^4.0.0-2",
"redux": "^3.6.0",
"redux-thunk": "^2.2.0",
"sass-loader": "^4.0.2",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "^1.13.2",
"webpack-dev-middleware": "^1.7.0",
"webpack-hot-middleware": "^2.12.2"
},
"devDependencies": {
"babel-eslint": "^7.1.1",
"eslint": "^3.14.0",
"eslint-config-airbnb": "^14.0.0",
"eslint-config-airbnb-base": "^11.0.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^3.0.2",
"eslint-plugin-react": "^6.2.2",
"rimraf": "^2.5.2"
},
"private": true
}