-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.81 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.81 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
71
72
73
74
75
76
77
{
"name": "suggestion-box",
"version": "1.0.0",
"description": "A simple anonymous feedback collector webapp",
"type": "module",
"sideEffects": false,
"scripts": {
"build": "tsc -b && vite build && bunx zero-deploy-permissions -p src/zero/schema.ts --output-format=sql --output-file=.permissions.sql",
"lint": "bunx biome lint --write --unsafe ./src",
"dev:ui": "dotenvx run --env-file .env -- vite",
"prod:ui:preview": "dotenvx run --env-file .env.production -- vite preview --port 5169",
"prod:ui:build": "dotenvx run --env-file .env.production -- vite build",
"dev:poll-service": "dotenvx run --env-file .env -- bun run polling-service/index.ts",
"prod:poll-service": "dotenvx run --env-file .env.production -- bun run polling-service/index.ts",
"dev:zero": "zero-cache-dev -p shared/zero/schema.ts --port 4947 --log-level=warn",
"dev:zero-cache": "dotenvx run --env-file .env -- bun dev:zero",
"prod:zero-cache": "dotenvx run --env-file .env.production -- zero-cache-dev -p shared/zero/schema.ts --port 4848",
"db:generate": "dotenvx run --env-file .env -- drizzle-kit generate",
"db:push-dev": "dotenvx run --env-file .env -- drizzle-kit push --config=./drizzle.config.ts",
"db:push-prod": "dotenvx run --env-file .env.production -- drizzle-kit push --config=./drizzle.config.ts",
"db:seed": "dotenvx run --env-file .env -- bun tsx scripts/db-setup.ts",
"db:studio": "dotenvx run --env-file .env -- drizzle-kit studio",
"postinstall": "patch-package"
},
"keywords": ["feedback", "anonymous", "suggestion"],
"author": "Alex Davis",
"license": "MIT",
"dependencies": {
"@ark-ui/solid": "^5.5.0",
"@gapu/formix": "^2.0.2",
"@hyperdx/browser": "^0.21.2",
"@msgpack/msgpack": "^3.1.1",
"@rocicorp/zero": "0.18.2025040300",
"@solid-primitives/scheduled": "^1.5.0",
"@solidjs/router": "^0.15.3",
"date-fns": "^4.1.0",
"drizzle-orm": "^0.41.0",
"drizzle-seed": "^0.3.1",
"drizzle-zero": "^0.5.4",
"focus-trap": "^7.6.4",
"lucide-solid": "^0.487.0",
"partysocket": "^1.1.3",
"pg": "^8.14.1",
"solid-js": "^1.9.5",
"solid-transition-group": "^0.3.0",
"tailwindcss": "^4.1.3",
"typesense": "^2.0.3",
"uuid": "^11.1.0",
"zod": "^3.24.2"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@faker-js/faker": "^9.6.0",
"@tailwindcss/vite": "^4.1.3",
"@total-typescript/ts-reset": "^0.6.1",
"@types/pg": "^8.11.11",
"@types/uuid": "^10.0.0",
"daisyui": "^5.0.12",
"drizzle-kit": "^0.30.6",
"hyperdx": "^0.0.0",
"patch-package": "^8.0.0",
"rollup-plugin-visualizer": "^5.14.0",
"solid-devtools": "^0.34.0",
"terser": "^5.39.0",
"tsx": "^4.19.3",
"typescript": "^5.8.3",
"vite": "^6.2.5",
"vite-plugin-solid": "^2.11.6",
"vite-plugin-unused-code": "^0.1.6"
},
"trustedDependencies": [
"@biomejs/biome",
"@rocicorp/zero-sqlite3",
"esbuild",
"protobufjs"
]
}