-
Notifications
You must be signed in to change notification settings - Fork 0
/
template.json
63 lines (63 loc) · 2.05 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
62
63
{
"package": {
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"build:staging": "env-cmd -f .env.staging npm run build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"check-package-updates": "npx npm-check-updates",
"prepare": "husky install"
},
"dependencies": {
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^13.0.1",
"@testing-library/user-event": "^13.2.1",
"@types/jest": "^27.0.1",
"@types/node": "^16.7.13",
"@types/react": "^17.0.20",
"@types/react-dom": "^17.0.9",
"typescript": "^4.4.2",
"web-vitals": "^2.1.0",
"classnames": "^2.3.1",
"env-cmd": "^10.1.0",
"react-router-dom": "^6.2.1",
"@hipo/react-ui-toolkit": "^1.0.0-beta"
},
"devDependencies": {
"@hipo/eslint-config-base": "^4.2.0",
"@hipo/eslint-config-react": "^2.2.0",
"@hipo/eslint-config-typescript": "^1.1.0",
"@hipo/stylelint-config-base": "^2.2.0",
"@types/react-router-dom": "^5.3.1",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^2.5.0",
"husky": "^7.0.2",
"lint-staged": "^11.2.0",
"node-sass": "^6.0.1",
"prettier": "^2.4.1",
"stylelint": "^13.13.1",
"stylelint-no-unsupported-browser-features": "^5.0.2",
"stylelint-order": "^4.1.0",
"stylelint-scss": "^3.21.0"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": ["prettier --config ./.prettierrc.js --write"],
"src/**/*.{js,jsx,ts,tsx}": ["eslint"],
"src/**/*.{css,scss}": ["stylelint"]
},
"eslintConfig": {
"parser": "@typescript-eslint/parser",
"plugins": ["react", "react-hooks", "@typescript-eslint", "jsx-a11y"],
"extends": [
"react-app",
"react-app/jest",
"@hipo/eslint-config-base",
"@hipo/eslint-config-react",
"@hipo/eslint-config-typescript",
"plugin:jsx-a11y/recommended",
"prettier"
]
}
}
}