-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.56 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
{
"name": "my-store",
"version": "1.0.0",
"description": "My Store",
"main": "index.js",
"scripts": {
"build": "webpack --mode production",
"start": "webpack-dev-server --open --mode development",
"format": "prettier --write '{*.js,src/**/*.{js,jsx}}'",
"lint": "eslint src/ --fix"
},
"keywords": [
"react",
"webpack"
],
"author": "Oscar Barajas <[email protected]>",
"license": "ISC",
"dependencies": {
"@babel/core": "7.7.2",
"@babel/preset-env": "7.7.1",
"@babel/preset-react": "7.7.0",
"babel-loader": "8.0.6",
"html-loader": "0.5.5",
"html-webpack-plugin": "3.2.0",
"react": "16.11.0",
"react-dom": "16.11.0",
"react-redux": "7.2.1",
"react-router-dom": "^5.2.0",
"redux": "4.0.5",
"webpack": "4.41.2",
"webpack-cli": "3.3.10",
"webpack-dev-server": "3.9.0"
},
"devDependencies": {
"babel-eslint": "10.0.3",
"css-loader": "3.2.0",
"eslint": "5.16.0",
"eslint-config-airbnb": "17.1.1",
"eslint-config-prettier": "4.3.0",
"eslint-plugin-import": "2.18.2",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-prettier": "3.1.1",
"eslint-plugin-react": "7.16.0",
"husky": "2.7.0",
"lint-staged": "8.2.1",
"mini-css-extract-plugin": "0.7.0",
"prettier": "1.19.1",
"style-loader": "0.23.1",
"stylus": "0.54.7",
"stylus-loader": "3.0.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx}": [
"npm run format",
"npm run lint",
"git add"
]
}
}