-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
49 lines (49 loc) · 1.46 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
{
"private": true,
"scripts": {
"clean": "rimraf dist",
"build:webpack": "cross-env NODE_ENV=production webpack --config webpack.config.prod.js",
"build": "npm run clean && npm run build:webpack",
"lint": "eslint src",
"start": "node devServer.js",
"prepublish": "npm run lint && npm run build"
},
"dependencies": {
"babel-polyfill": "^6.16.0",
"html-loader": "^0.4.4",
"json-loader": "0.5.4",
"markdown-loader": "^2.0.0",
"raw-loader": "0.5.1",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-redux": "^6.0.0",
"redux": "^4.0.4",
"redux-form": "^8.2.6",
"redux-form-website-template": "1.0.1"
},
"devDependencies": {
"babel-core": "^6.18.2",
"babel-eslint": "^8.2.2",
"babel-loader": "^6.2.8",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.24.1",
"cross-env": "^3.1.3",
"eslint": "^4.1.1",
"eslint-config-rackt": "1.1.1",
"eslint-config-react-app": "^2.0.1",
"eslint-loader": "^1.6.1",
"eslint-plugin-babel": "^4.1.1",
"eslint-plugin-flowtype": "^2.34.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.17.0",
"eventsource-polyfill": "0.9.6",
"express": "^4.14.0",
"extract-text-webpack-plugin": "^2.1.0",
"redbox-react": "^1.3.3",
"rimraf": "^2.7.1",
"webpack": "^2.3.1",
"webpack-dev-middleware": "^1.8.4",
"webpack-hot-middleware": "^2.13.2"
}
}