-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.57 KB
/
package.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
{
"name": "react-ts-boilerplate",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"ts:check": "tsc --noemit",
"lint": "eslint . && npm run ts:check",
"lint-staged": "lint-staged",
"prettier": "prettier --write",
"prepare": "husky install .husky",
"test:watch": "NODE_ENV=test vitest --config ./tests/vitest.config",
"test": "NODE_ENV=test vitest --config ./tests/vitest.config --watch=false --reporter=verbose",
"test:unit": "NODE_ENV=test vitest --config ./tests/vitest.unit.config --watch=false",
"test:ui": "NODE_ENV=test vitest --config ./tests/vitest.ui.config --watch=false"
},
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@testing-library/react": "^14.2.1",
"@types/node": "^20.11.17",
"@types/react": "^18.2.55",
"@types/react-dom": "^18.2.19",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"@vitejs/plugin-react": "^4.2.1",
"@vitest/ui": "^1.2.2",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"eslint-plugin-testing-library": "^6.2.0",
"husky": "^9.0.10",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"typescript": "^5.3.3",
"vite": "^5.1.0",
"vite-plugin-eslint": "^1.8.1",
"vitest": "^1.2.2"
}
}