-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.13 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.13 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "shottimer",
"version": "1.0.0",
"type": "module",
"description": "Randomized timed shots drinking game",
"scripts": {
"dev": "run-p dev:client dev:server",
"dev:client": "vite dev --port 3000",
"dev:server": "tsx server/index.ts",
"lint:fix": "biome lint --fix ./ && pnpm lint:organize-imports",
"lint:check": "biome lint ./ && biome check",
"lint:organize-imports": "biome check --write",
"test": "vitest run",
"test:watch": "vitest",
"format:fix": "prettier --log-level warn --write './**/*.{tsx,ts,js,jsx,json,css,html}'",
"format:check": "prettier --log-level warn --check --no-color -u './**/*.{tsx,ts,js,jsx,json,css,html}'",
"build:check": "tsc --noEmit && tsc --project tsconfig.server.json --noEmit",
"build": "vite build",
"start": "node --loader ts-node/esm --no-warnings=ExperimentalWarning --experimental-specifier-resolution=node server/index.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kasperrt/shottimer.git"
},
"author": "kasperrt",
"license": "MIT",
"bugs": {
"url": "https://github.com/kasperrt/shottimer/issues"
},
"homepage": "https://github.com/kasperrt/shottimer#readme",
"dependencies": {
"@generouted/solid-router": "1.20.2",
"@hono/node-server": "1.19.13",
"@solidjs/router": "0.16.1",
"dotenv": "17.4.1",
"hono": "4.12.12",
"nanoid": "5.1.7",
"qrcode": "1.5.4",
"solid-js": "1.9.12",
"ts-node": "10.9.2",
"wiretyped": "0.3.7",
"zod": "4.3.6"
},
"devDependencies": {
"@biomejs/biome": "2.4.10",
"@tailwindcss/vite": "4.2.2",
"@types/qrcode": "1.5.6",
"jsdom": "29.0.2",
"npm-run-all2": "8.0.4",
"prettier": "3.8.1",
"prettier-plugin-tailwindcss": "0.7.2",
"tailwindcss": "4.2.2",
"tsx": "4.21.0",
"typescript": "6.0.2",
"vite": "8.0.5",
"vite-plugin-solid": "2.11.12",
"vitest": "4.1.2"
},
"pnpm": {
"overrides": {
"@babel/helpers": ">=7.26.10",
"diff": ">=4.0.4",
"seroval": ">=1.4.1",
"picomatch": ">=4.0.4",
"undici": ">=7.24.5",
"yaml": ">=2.8.3",
"vite": ">=8.0.5"
}
}
}