-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.9 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
62
63
64
65
66
67
{
"name": "rickandmorty-app",
"version": "0.1.0",
"description": "simple webpack-driven app",
"main": "src/index.js",
"scripts": {
"dev:stub": "cross-env PORT=1234 BACKEND_URL=/ npm start",
"dev:api": "cross-env PORT=1235 BACKEND_URL=https://rickandmortyapi.com/ npm start",
"start": "webpack-dev-server",
"build": "webpack",
"lint": "eslint 'src/**/*.js'",
"stylelint": "stylelint 'src/**/*.css' --fix",
"prod": "webpack --mode production"
},
"keywords": [
"npm"
],
"author": "[email protected]",
"license": "WTFPL",
"devDependencies": {
"@babel/core": "^7.1.0",
"@babel/plugin-proposal-class-properties": "^7.3.0",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.2",
"clean-webpack-plugin": "^0.1.19",
"cross-env": "^5.2.0",
"css-loader": "^2.1.0",
"eslint": "^5.15.1",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.12.4",
"express": "^4.16.4",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"husky": "^1.3.1",
"style-loader": "^0.23.1",
"stylelint": "^9.10.1",
"stylelint-config-standard": "^18.2.0",
"webpack": "^4.19.0",
"webpack-cli": "^3.1.0",
"webpack-dev-middleware": "^3.3.0",
"webpack-dev-server": "^3.1.14",
"webpack-hot-client": "^4.1.1",
"webpack-serve": "^2.0.2"
},
"dependencies": {
"@material-ui/core": "^3.9.2",
"axios": "^0.18.0",
"classnames": "^2.2.6",
"react": "^16.5.2",
"react-dom": "^16.5.2",
"react-redux": "^6.0.1",
"react-router-dom": "^4.3.1",
"redux": "^4.0.1",
"redux-devtools-extension": "^2.13.8",
"redux-thunk": "^2.3.0"
},
"husky": {
"hooks": {
"pre-commit": "npm run stylelint"
}
}
}