-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
84 lines (84 loc) · 2.5 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
{
"name": "@shelve/app",
"version": "2.0.0.beta-15",
"description": "Shelve is a project management tool for developers teams",
"private": true,
"type": "module",
"repository": "https://github.com/HugoRCD/shelve",
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"start": "node .output/server/index.mjs",
"postinstall": "nuxt prepare",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"typecheck": "tsc --noEmit",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"db:push": "drizzle-kit push",
"build:app": "turbo build --filter=@shelve/app",
"build:lp": "turbo build --filter=@shelve/lp",
"build:vault": "turbo build --filter=@shelve/vault",
"build:cli": "turbo build --filter=@shelve/cli",
"dev:app": "turbo dev --filter=@shelve/app",
"dev:lp": "turbo dev --filter=@shelve/lp",
"dev:vault": "turbo dev --filter=@shelve/vault",
"dev:cli": "turbo dev --filter=@shelve/cli",
"release": "turbo release && changeset",
"turbo:dev": "turbo dev --filter=@shelve/{app,lp}",
"turbo:build": "turbo build",
"turbo:lint": "turbo lint",
"turbo:lint:fix": "turbo lint:fix",
"turbo:typecheck": "turbo typecheck"
},
"dependencies": {
"@iconify-json/heroicons": "1.2.2",
"@iconify-json/lucide": "1.2.24",
"@iconify-json/simple-icons": "1.2.21",
"@nuxt/image": "1.9.0",
"@nuxt/scripts": "0.9.5",
"@nuxt/ui": "3.0.0-alpha.11",
"@shelve/utils": "*",
"@vue-email/components": "0.0.21",
"@vue-email/render": "0.0.9",
"@vueuse/core": "12.5.0",
"@vueuse/nuxt": "12.5.0",
"drizzle-kit": "0.30.2",
"drizzle-orm": "0.38.4",
"jsonwebtoken": "^9.0.2",
"libsodium-wrappers": "^0.7.15",
"nuxt": "3.15.2",
"nuxt-auth-utils": "0.5.9",
"nuxt-build-cache": "0.1.1",
"pg": "8.13.1",
"resend": "4.1.1",
"vue": "3.5.13",
"vue-router": "4.5.0",
"vue-sonner": "1.3.0",
"zod": "3.24.1"
},
"devDependencies": {
"@changesets/cli": "^2.27.12",
"@hrcd/eslint-config": "edge",
"@nuxt/devtools": "1.7.0",
"@shelve/cli": "*",
"@types/jsonwebtoken": "^9.0.8",
"@types/libsodium-wrappers": "^0.7.14",
"@types/pg": "8.11.11",
"automd": "0.3.12",
"eslint": "9.19.0",
"turbo": "2.3.4",
"typescript": "5.7.3"
},
"engines": {
"node": ">=22.13.1"
},
"packageManager": "[email protected]",
"workspaces": [
"packages/*",
"apps/*",
"."
]
}