-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 2.73 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
80
81
82
83
84
85
86
87
88
89
90
{
"name": "@ichack/monorepo",
"type": "module",
"scripts": {
"backend:check-schema": "drizzle-kit generate 2>&1 | grep 'No schema changes, nothing to migrate'",
"backend:generate": "drizzle-kit generate",
"backend:push-schema": "drizzle-kit push",
"build": "concurrently -n \"website,landing\" -c \"blue,green\" \"bun run build:website\" \"bun run build:landing\"",
"build:website": "bun --bun nuxt build",
"build:landing": "bun --bun nuxt generate --cwd packages/www",
"dev": "bash ./scripts/start-dev.sh",
"deploy": "bun run scripts/deploy.ts",
"preview": "docker compose up --build",
"postinstall": "bun --bun nuxt prepare",
"test:backend": "bash ./scripts/test-backend.sh",
"up-db": "docker compose up -d postgres",
"down-db": "docker compose down postgres",
"format": "prettier --write .",
"format:check": "prettier --check .",
"docs:dev": "vitepress dev docs"
},
"devDependencies": {
"@inquirer/confirm": "^5.1.3",
"@inquirer/select": "^4.0.6",
"@nuxtjs/tailwindcss": "6.13.1",
"@types/bun": "^1.1.6",
"@types/chart.js": "^2.9.41",
"@types/matter-js": "^0.19.8",
"@types/nodemailer": "^6.4.17",
"@types/pg": "^8.11.6",
"@types/qrcode": "^1.5.5",
"@vueuse/core": "^12.2.0",
"@vueuse/nuxt": "^12.2.0",
"bun-types": "^1.1.20",
"concurrently": "^9.1.0",
"drizzle-kit": "^0.30.1",
"prettier": "^3.3.2",
"prettier-plugin-tailwindcss": "^0.6.9",
"vitepress": "^1.5.0",
"vitepress-sidebar": "^1.30.2",
"vitest": "^2.1.8"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"trustedDependencies": [
"@parcel/watcher",
"argon2",
"esbuild",
"nuxt-app",
"vue-demi"
],
"dependencies": {
"@hono/zod-validator": "^0.4.2",
"@iconify-json/heroicons": "^1.1.24",
"@lucia-auth/adapter-drizzle": "^1.1.0",
"@nuxt/fonts": "^0.10.3",
"@nuxt/ui": "2.21.0",
"@nuxtjs/seo": "^2.0.2",
"@pinia/nuxt": "^0.9.0",
"@types/nunjucks": "^3.2.6",
"argon2": "^0.41.1",
"build-url-ts": "^6.1.7",
"chart.js": "^4.4.7",
"csv-parse": "^5.6.0",
"cva": "npm:class-variance-authority",
"date-fns": "^4.1.0",
"drizzle-orm": "^0.38.2",
"drizzle-zod": "^0.6.1",
"hono": "^4.5.5",
"hono-passkit-webservice": "^1.0.2",
"lucia": "^3.2.0",
"marked": "^15.0.6",
"matter-js": "^0.20.0",
"nodemailer": "^6.10.0",
"nunjucks": "^3.2.4",
"nuxi": "^3.15.0",
"nuxt": "^3.12.3",
"passkit-generator": "^3.3.1",
"pg": "^8.12.0",
"picocolors": "^1.0.1",
"pinia": "^2.2.1",
"qrcode": "^1.5.4",
"tailwind-merge": "^2.5.5",
"typescript-result": "^3.1.0",
"vue": "latest",
"vue-qrcode-reader": "^5.7.0",
"zod": "^3.23.8"
}
}