-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
79 lines (79 loc) · 3.01 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
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
71
72
73
74
75
76
77
78
79
{
"name": "vasi",
"author": "stagas",
"version": "1.0.0",
"description": "Vasi is a full-stack webapp base template using Deno and Vite.",
"license": "AGPLv3",
"type": "module",
"main": "src/client.tsx",
"scripts": {
"build": "vite build",
"test": "bun run test:api && bun run test:web",
"test:watch": "bun run test:api:watch & bun run test:web:watch",
"test:api": "deno test -A --no-lock api",
"test:api:ci": "deno test -A --no-lock --import-map=./api/import-map.production.json --coverage=coverage/deno api",
"test:api:cov": "deno coverage coverage/deno --lcov --output=coverage/lcov-deno.info",
"test:api:watch": "deno test -A --watch --no-lock api & deno -A --no-lock api/test-watch.ts",
"test:web": "bun test --coverage src",
"test:web:watch": "bun test --coverage --watch src",
"dev": "bun run dev:db & bun run dev:api & bun run dev:web",
"dev:db": "docker compose up",
"dev:api": "deno --watch --unstable-kv -A api/core/server.ts",
"dev:api:2": "deno --watch --unstable-kv -A api/core/server.ts --port=8001",
"dev:web": "vite",
"kysely": "kysely",
"migrate:make": "kysely migrate:make",
"migrate:down": "kysely migrate:down && bun run models",
"migrate:latest": "kysely migrate:latest && bun run models",
"migrate:rollback": "kysely migrate:rollback --all",
"models": "kysely-zod-codegen --env-file=.env.development --camel-case --out-file=api/models.ts",
"scripts": "bun run scripts/generate-dsp-vm.ts && bun run scripts/update-dsp-factory.ts && bun run scripts/update-gens-offsets.ts",
"pwa": "pwa-assets-generator --preset minimal-2023 public/favicon.svg",
"link": "link-local || exit 0"
},
"devDependencies": {
"@happy-dom/global-registrator": "^15.7.4",
"@maktouch/kysely-zod-codegen": "^0.5.2",
"@types/audioworklet": "^0.0.60",
"@types/bun": "^1.1.10",
"@types/node": "^22.7.4",
"@vite-pwa/assets-generator": "^0.2.4",
"ambient-dts": "github:stagas/ambient-dts",
"assemblyscript": "^0.27.30",
"autoprefixer": "^10.4.20",
"kysely": "^0.27.4",
"kysely-ctl": "^0.9.0",
"node-conditions": "^1.2.0",
"open-in-editor": "^2.2.0",
"postcss": "^8.4.47",
"qrcode-terminal": "^0.12.0",
"tailwindcss": "^3.4.13",
"tailwindcss-image-rendering": "^1.0.2",
"utils": "github:stagas/utils",
"visitor-as": "^0.11.4",
"vite": "^5.4.8",
"vite-plugin-externalize-dependencies": "^1.0.1",
"vite-plugin-pwa": "^0.20.0",
"vite-plugin-watch-and-run": "^1.7.1",
"vite-tsconfig-paths": "^5.0.1",
"workbox-core": "^7.1.0",
"workbox-precaching": "^7.1.0",
"workbox-routing": "^7.1.0",
"workbox-strategies": "^7.1.0",
"workbox-window": "^7.1.0"
},
"dependencies": {
"@types/pg": "^8.11.10",
"dotenv": "^16.4.5",
"easygenqr": "^1.3.0",
"gl-util": "github:stagas/gl-util",
"lucide": "^0.446.0",
"pg": "^8.13.0",
"sigui": "github:stagas/sigui",
"zod": "^3.23.8"
},
"resolutions": {
"sharp": "0.32.6",
"sharp-ico": "0.1.5"
}
}