-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtemplate.json
33 lines (33 loc) · 942 Bytes
/
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
{
"package": {
"dependencies": {
"@testing-library/react": "^10.0.1",
"@testing-library/jest-dom": "^5.1.1",
"@testing-library/user-event": "^10.0.0",
"@types/node": "^12.0.0",
"@types/react": "^16.9.0",
"@types/react-dom": "^16.9.0",
"@types/jest": "^24.0.0",
"typescript": "3.8.3",
"@typescript-eslint/eslint-plugin": "^2.24.0",
"@typescript-eslint/parser": "^2.24.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.18.3",
"prettier": "^1.19.1"
}
},
"scripts": {
"lint": "eslint --ext .js,.jsx,.ts,.tsx src/",
"lint:fix": "eslint --ext .js,.jsx,.ts,.tsx src/ --fix"
},
"eslintConfig": {
"extends": [
"react-app",
"eslint:recommended",
"plugin:react/recommended",
"plugin:@typescript-eslint/eslint-recommended",
"prettier"
]
}
}