-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.48 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
{
"name": "prh-react-starter",
"version": "0.0.1",
"description": "PRH React Redux Webpack Babel ESLint ES8 SASS starter project",
"main": "index.js",
"scripts": {
"start:dev": "webpack-dev-server --env development --config webpack.config.js --host 0.0.0.0",
"start:prod": "webpack-dev-server --env production --config webpack.config.js --host 0.0.0.0",
"build": "webpack --env production --config webpack.config.js",
"test": "jest",
"test:watch": "jest --watch"
},
"author": "Eric Chen",
"license": "ISC",
"dependencies": {
"@babel/cli": "^7.1.2",
"@babel/core": "^7.1.2",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"babel-loader": "^8.0.4",
"css-loader": "^1.0.0",
"eslint": "^5.7.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-loader": "^2.1.1",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jest": "^21.26.2",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.11.1",
"jest": "^23.6.0",
"mini-css-extract-plugin": "^0.4.4",
"node-sass": "^4.9.4",
"react": "^16.6.0",
"react-dom": "^16.6.0",
"react-redux": "^5.0.7",
"redux": "^4.0.1",
"regenerator-runtime": "^0.12.1",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"webpack": "^4.23.0",
"webpack-cli": "^3.1.2"
},
"devDependencies": {
"webpack-dev-server": "^3.1.10"
}
}