This repository has been archived by the owner on May 29, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.02 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
{
"name": "@vgerasimovich/create-react-app-extended",
"version": "1.3.0",
"description": "An extended version of Create React App with linters, styles adjustment, pre-commit and more",
"repository": {
"type": "git",
"url": "https://github.com/vgerasimovich/create-react-app-extended.git"
},
"keywords": [
"create-react-app",
"create-react-app-extended",
"cra",
"crax",
"react",
"builder",
"task runner"
],
"author": "Vlad Gerasimovich <vlad.gerasimovich.micro@outlook.com>",
"license": "MIT",
"bugs": "https://github.com/vgerasimovich/create-react-app-extended/issues",
"dependencies": {
"normalize.css": "^8.0.1",
"react": "^17.0.1",
"react-app-polyfill": "^2.0.0",
"react-dom": "^17.0.1",
"react-router-dom": "^5.2.0",
"react-scripts": "4.0.0"
},
"devDependencies": {
"css-loader": "^5.0.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.21.5",
"husky": "^4.3.0",
"lint-staged": "^10.5.1",
"prettier": "^2.1.2",
"pretty-quick": "^3.1.0",
"sass": "^1.28.0",
"stylelint": "^13.7.2",
"stylelint-config-standard": "^20.0.0",
"stylelint-order": "^4.1.0"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"browserslist": {
"production": [
"> 0.5%",
"last 2 versions",
"not dead"
],
"development": [
"> 0.5%",
"last 2 versions",
"not dead"
]
},
"lint-staged": {
"src/**/*.{js,jsx}": [
"pretty-quick --pattern './src/**/*.{js,jsx}'",
"eslint './src/**/*.{js,jsx}' --fix"
],
"src/**/*.{scss,sass,css}": [
"stylelint './src/**/*.{scss,sass,css}' --fix"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && yarn build && git add ."
}
}
}