-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.53 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.53 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
53
54
55
{
"name": "aurapod",
"private": true,
"version": "1.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"test": "vitest run",
"test:unit": "vitest run --coverage",
"test:e2e": "npm run build && playwright test",
"test:e2e:ui": "npm run build && playwright test --ui",
"test:watch": "vitest watch",
"test:unused": "ts-prune",
"type:check": "tsc --noEmit",
"test:ci": "npm run type:check && npm run test:unit && npm run test:unused",
"test:all": "npm run test:ci && npm run test:e2e",
"prepare": "husky install"
},
"dependencies": {
"@msgpack/msgpack": "^3.1.2",
"canvas-confetti": "^1.9.3",
"fflate": "^0.8.2",
"pako": "^2.1.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-router-dom": "^7.11.0"
},
"devDependencies": {
"@playwright/test": "^1.40.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.0.1",
"@testing-library/user-event": "^14.5.1",
"@types/canvas-confetti": "^1.9.0",
"@types/node": "^22.10.2",
"@types/pako": "^2.0.3",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@vitest/coverage-v8": "^1.0.4",
"@vitest/ui": "^1.0.4",
"happy-dom": "^12.10.3",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"ts-prune": "^0.10.3",
"typescript": "^5.7.0",
"vite": "^6.0.0",
"vitest": "^1.0.4"
},
"lint-staged": {
"*.{ts,tsx}": [
"vitest related --run --passWithNoTests"
]
}
}