-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.2 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.2 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
{
"name": "frontend",
"version": "0.0.0",
"private": true,
"license": "MIT",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"typecheck": "tsc -b",
"lint": "oxlint .",
"lint:fix": "oxlint . --fix",
"test": "vitest run",
"test:watch": "vitest",
"test:e2e": "playwright test",
"format": "oxfmt . --check",
"format:fix": "oxfmt .",
"preview": "vite preview"
},
"dependencies": {
"@tanstack/react-query": "^5.102.8",
"dexie": "^4.4.5",
"react": "^19.2.8",
"react-dom": "^19.2.8",
"react-router": "^8.3.1"
},
"devDependencies": {
"@playwright/test": "^1.62.1",
"@testing-library/jest-dom": "^7.0.1",
"@testing-library/react": "^16.3.3",
"@testing-library/user-event": "^14.6.7",
"@types/node": "^26.4.1",
"@types/react": "^19.2.18",
"@types/react-dom": "^19.2.5",
"@vitejs/plugin-react": "^6.1.1",
"fake-indexeddb": "^6.2.5",
"jsdom": "^30.0.1",
"oxfmt": "^0.66.0",
"oxlint": "^1.81.0",
"typescript": "~7.0.2",
"vite": "^8.2.2",
"vitest": "^4.1.11"
},
"engines": {
"node": ">=26 <27",
"pnpm": ">=11 <12"
},
"packageManager": "pnpm@11.18.0"
}