-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.27 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "kaizen-simple",
"version": "1.0.0",
"description": "A boilerplate Simple",
"main": "src/index.jsx",
"repository": "[email protected]:luanribeiros/kaizen.git",
"author": "Luan Ribeiro",
"license": "MIT",
"scripts": {
"start": "webpack-dashboard -- webpack-dev-server --config webpack/dev.config.js --open",
"build": "cross-env webpack-dashboard -- webpack --config webpack/prod.config.js",
"analyzer": "webpack --json > stats.json && webpack-bundle-analyzer stats.json",
"help": "webpack-dev-server -h",
"test": "jest"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx}": [
"pretty-quick — staged"
]
},
"keywords": [
"js",
"javascript",
"webpack"
],
"dependencies": {
"@reduxjs/toolkit": "^1.3.6",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-redux": "7.2.0",
"react-router-dom": "^5.2.0",
"redux": "4.0.5",
"styled-components": "5.1.0"
},
"devDependencies": {
"@babel/cli": "7.8.4",
"@babel/core": "7.9.0",
"@babel/node": "7.8.7",
"@babel/preset-env": "7.9.0",
"@babel/preset-react": "7.9.4",
"axios": "0.19.2",
"babel-eslint": "10.1.0",
"babel-loader": "8.1.0",
"clean-webpack-plugin": "3.0.0",
"cross-env": "7.0.2",
"css-loader": "3.4.2",
"cssnano": "4.1.10",
"eslint": "6.8.0",
"eslint-config-airbnb": "18.1.0",
"eslint-config-prettier": "6.10.1",
"eslint-loader": "3.0.4",
"eslint-plugin-import": "2.20.2",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-react": "7.19.0",
"file-loader": "6.0.0",
"html-webpack-plugin": "4.0.1",
"husky": "4.2.5",
"jest": "^26.0.1",
"lint-staged": "10.1.7",
"mini-css-extract-plugin": "0.9.0",
"node-sass": "4.13.1",
"optimize-css-assets-webpack-plugin": "5.0.3",
"path": "0.12.7",
"prettier": "2.0.5",
"pretty-quick": "2.0.1",
"sass-loader": "8.0.2",
"source-map-loader": "0.2.4",
"style-loader": "1.1.3",
"terser-webpack-plugin": "2.3.5",
"url-loader": "4.0.0",
"webpack": "4.42.1",
"webpack-bundle-analyzer": "3.6.1",
"webpack-cli": "3.3.11",
"webpack-dashboard": "3.2.0",
"webpack-dev-server": "3.10.3",
"webpack-merge": "4.2.2"
}
}