-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.1 KB
/
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
36
37
38
39
40
{
"name": "hexbattles",
"version": "1.0.0",
"description": "A clone of the hexbattles flash game",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/primeapple/hexbattles"
},
"author": "Toni Müller",
"license": "GPLv3",
"scripts": {
"build": "vite build",
"check": "biome check",
"checkfix": "biome check --apply",
"coverage": "vitest run --coverage",
"serve": "vite preview",
"start": "vite",
"test": "vitest run",
"watch": "vite"
},
"devDependencies": {
"@biomejs/biome": "^1.8.2",
"@testing-library/jest-dom": "^6.4.6",
"@vitest/coverage-c8": "^0.28.3",
"autoprefixer": "^10.4.19",
"jsdom": "^24.1.0",
"postcss": "^8.4.38",
"solid-testing-library": "^0.5.1",
"tailwindcss": "^3.4.4",
"typescript": "^5.5.2",
"vite": "^5.3.1",
"vite-plugin-solid": "^2.10.2",
"vitest": "^1.6.0"
},
"dependencies": {
"classnames": "^2.5.1",
"solid-js": "^1.8.17"
}
}