-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.44 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.44 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
{
"name": "my-app",
"private": true,
"version": "0.0.0",
"type": "module",
"engines": {
"node": ">=24.6.0",
"npm": ">=11.0.0"
},
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"preview": "vite preview",
"test": "vitest run",
"test:update": "vitest run -u",
"test:watch": "vitest",
"lint": "eslint . --ext .ts,.tsx",
"format": "prettier . --write",
"format:check": "prettier . --check",
"typecheck": "tsc -b"
},
"dependencies": {
"@tanstack/react-query": "^5.85.6",
"@types/react-query": "^1.2.8",
"@types/react-router-dom": "^5.3.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^7.8.2"
},
"devDependencies": {
"@eslint-react/eslint-plugin": "^1.52.7",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.0.0",
"@testing-library/user-event": "^14.6.1",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"@vitejs/plugin-react-swc": "^3.7.0",
"eslint": "^9.9.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.9.0",
"eslint-plugin-simple-import-sort": "^12.1.0",
"globals": "^16.3.0",
"jsdom": "^25.0.0",
"prettier": "^3.6.2",
"typescript": "^5.6.2",
"typescript-eslint": "^8.41.0",
"vitest": "^3.2.4"
}
}