-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 977 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 977 Bytes
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
{
"name": "pitch-timer",
"private": true,
"version": "0.0.1",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"test": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"dependencies": {
"preact": "^10.19.3"
},
"devDependencies": {
"@eslint/js": "^9.37.0",
"@preact/preset-vite": "^2.8.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/preact": "^3.2.4",
"@types/node": "^24.7.2",
"@vitest/coverage-v8": "^3.2.4",
"@vitest/ui": "^3.2.4",
"autoprefixer": "^10.4.16",
"eslint": "^9.37.0",
"eslint-plugin-react": "^7.37.5",
"globals": "^16.4.0",
"happy-dom": "^20.0.0",
"postcss": "^8.4.32",
"tailwindcss": "^3.4.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.46.1",
"vite": "^5.0.8",
"vitest": "^3.2.4"
}
}