-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.18 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.18 KB
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
{
"name": "react-base",
"private": true,
"version": "1.0.0",
"title": "React boilerplate with vite and vitest",
"author": "toantran201",
"dependencies": {
"@chakra-ui/react": "^2.2.9",
"@emotion/react": "^11.10.0",
"@emotion/styled": "^11.10.0",
"axios": "^0.27.2",
"cross-fetch": "^3.1.5",
"dayjs": "^1.11.5",
"fast-json-patch": "^3.1.1",
"formik": "^2.2.9",
"framer-motion": "^7.2.1",
"query-string": "^7.1.1",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-icons": "^4.4.0",
"react-infinite-scroller": "^1.2.6",
"react-query": "^3.39.2",
"react-router-dom": "^6.3.0"
},
"devDependencies": {
"@faker-js/faker": "^7.3.0",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.3.0",
"@testing-library/react-hooks": "^8.0.1",
"@testing-library/user-event": "^13.5.0",
"@types/node": "^18.0.0",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@types/react-infinite-scroller": "^1.2.3",
"@typescript-eslint/eslint-plugin": "^5.30.0",
"@typescript-eslint/parser": "^5.30.0",
"@vitejs/plugin-react": "^1.3.0",
"@vitest/ui": "^0.20.2",
"c8": "^7.12.0",
"eslint": "^7.32.0 || ^8.2.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"husky": "^8.0.1",
"jsdom": "^20.0.0",
"lint-staged": "^13.0.3",
"msw": "^0.44.2",
"prettier": "^2.7.1",
"typescript": "^4.6.3",
"vite": "^2.9.9",
"vitest": "^0.20.2"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"lint": "eslint . --ext .tsx,.ts --ignore .eslintignore",
"lint:fix": "yarn lint --fix",
"prettier": "npx prettier src --check",
"prettier:fix": "npx prettier src --write",
"test": "vitest",
"test:ui": "vitest --ui",
"coverage": "vitest run --coverage",
"postinstall": "husky install"
},
"lint-staged": {
"src/**/*.{ts,tsx,js,jsx}": [
"yarn run prettier:fix",
"yarn run lint:fix"
]
}
}