-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathtemplate.json
61 lines (61 loc) · 1.51 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
53
54
55
56
57
58
59
60
61
{
"package": {
"scripts": {
"test": "react-scripts test --passWithNoTests",
"lint": "eslint --ext .tsx --ext .ts src/"
},
"eslintConfig": {
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint"
],
"extends": [
"react-app",
"react-app/jest",
"htmlacademy/react-typescript"
],
"parserOptions": {
"project": [
"tsconfig.json"
]
},
"overrides": [
{
"files": [
"*test*"
],
"rules": {
"@typescript-eslint/unbound-method": "off",
"jest/unbound-method": "error"
}
}
]
},
"dependencies": {
"react": "18.2.0",
"react-dom": "18.2.0",
"@reduxjs/toolkit": "1.8.6",
"axios": "0.27.2",
"history": "5.3.0",
"react-redux": "8.0.4",
"react-router-dom": "6.4.2"
},
"devDependencies": {
"@jedmao/redux-mock-store": "3.0.5",
"@testing-library/jest-dom": "5.16.5",
"@testing-library/react": "13.4.0",
"@testing-library/user-event": "14.4.3",
"@types/jest": "29.1.2",
"@types/node": "16.11.7",
"@types/react": "18.0.21",
"@types/react-dom": "18.0.6",
"@types/faker": "5.5.8",
"@types/react-redux": "7.1.24",
"axios-mock-adapter": "1.21.2",
"eslint-config-htmlacademy": "8.0.0",
"faker": "5.5.3",
"@redux-devtools/extension": "3.2.3",
"typescript": "4.8.4"
}
}
}