-
Notifications
You must be signed in to change notification settings - Fork 0
/
template.json
52 lines (52 loc) · 1.65 KB
/
template.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
{
"package": {
"dependencies": {
"@redux-devtools/extension": "^3.2.2",
"@reduxjs/toolkit": "^1.8.0",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^11.2.7",
"@testing-library/user-event": "^12.8.3",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-redux": "^7.2.6",
"react-router-dom": "^5.2.0",
"react-scripts": "5.0.0",
"redux": "^4.1.2",
"web-vitals": "^2.1.4"
},
"devDependencies": {
"axios": "^0.26.1",
"eslint": "^8.11.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest-dom": "^4.0.1",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-sonarjs": "^0.12.0",
"prettier": "^2.6.0",
"prop-types": "^15.8.1",
"stylelint": "^14.6.0",
"stylelint-config-standard": "^20.0.0",
"stylelint-order": "^5.0.0"
},
"eslintConfig": {
"extends": ["react-app", "react-app/jest"]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"format": "prettier . --write --ignore-path .gitignore && git update-index --again",
"lint:styles": "npx stylelint '**/*.css'",
"lint": "eslint --no-inline-config --no-error-on-unmatched-pattern -c .eslintrc.json . --ext .js, .jsx, .ts, .tsx"
}
}
}