-
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.35 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.35 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": "dataset-annotation-app",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint . --max-warnings 0",
"format": "prettier --write .",
"format:check": "prettier --check .",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:e2e": "playwright test"
},
"dependencies": {
"@phosphor-icons/react": "^2.1.10",
"dexie": "^4.0.0",
"fflate": "^0.8.0",
"next": "^15.0.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-dropzone": "^14.0.0",
"uuid": "^11.0.0",
"zod": "^3.23.0",
"zustand": "^5.0.0"
},
"devDependencies": {
"@playwright/test": "^1.48.0",
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/react": "^16.0.0",
"@testing-library/user-event": "^14.5.0",
"@types/node": "^22.0.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@types/uuid": "^10.0.0",
"@vitest/coverage-v8": "^3.0.0",
"eslint": "^9.0.0",
"eslint-config-next": "^15.0.0",
"eslint-config-prettier": "^9.1.0",
"fake-indexeddb": "^6.0.0",
"jsdom": "^25.0.0",
"prettier": "^3.3.0",
"typescript": "^5.6.0",
"vitest": "^3.0.0"
},
"overrides": {
"vite": "^6.2.0"
}
}