-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 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
49
50
51
52
53
54
{
"name": "di-todo",
"version": "1.0.0",
"description": "",
"main": "index.js",
"engines": {
"node": "20.18.3"
},
"scripts": {
"dev": "vite --port=3001 && tsr watch",
"build": "tsc && vite build",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"gen:tsr": "tsr generate",
"prepare": "husky",
"test:run": "vitest run",
"test:watch": "vitest"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx}": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@tanstack/react-router": "^1.16.0",
"@tanstack/router-cli": "^1.16.1",
"@tanstack/router-devtools": "^1.16.0",
"@tanstack/router-vite-plugin": "^1.16.1",
"@testing-library/jest-dom": "6.6.3",
"@testing-library/react": "14.3.1",
"@types/react": "^18.2.55",
"@types/react-dom": "^18.2.19",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"@vanilla-extract/vite-plugin": "^4.0.4",
"@vitejs/plugin-react-swc": "^3.5.0",
"eslint": "^8.56.0",
"eslint-plugin-jest-dom": "5.5.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"eslint-plugin-testing-library": "6.5.0",
"happy-dom": "13.10.1",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"typescript": "^5.2.2",
"vite": "^5.1.0",
"vitest": "1.6.1"
}
}