-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 955 Bytes
/
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
{
"name": "e2e-react-router-v6",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite --port 3006",
"build": "tsc -b && vite build",
"preview": "vite preview",
"test": "pnpm run '/^test:/'",
"test:unit": "vitest",
"test:e2e": "echo 'todo: Implement e2e tests'"
},
"dependencies": {
"nuqs": "workspace:*",
"react": "catalog:react19",
"react-dom": "catalog:react19",
"react-router-dom": "^6.28.0"
},
"devDependencies": {
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.0.1",
"@testing-library/user-event": "^14.5.2",
"@types/node": "^22.9.0",
"@types/react": "catalog:react19",
"@types/react-dom": "catalog:react19",
"@vitejs/plugin-react": "^4.3.3",
"globals": "^15.12.0",
"jsdom": "^25.0.1",
"typescript": "^5.6.3",
"vite": "^5.4.11",
"vitest": "^2.1.5"
}
}