-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.9 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.9 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
{
"name": "textus",
"version": "1.0.0",
"description": "A modern navigation management system with Material Design 3",
"type": "module",
"private": true,
"scripts": {
"dev": "vite",
"dev:api": "tsx watch server/dev.ts",
"dev:all": "concurrently \"npm run dev\" \"npm run dev:api\" --names \"frontend,api\" --prefix-colors \"blue,green\"",
"build": "vite build",
"build:api": "node scripts/build-functions.js",
"build:all": "pnpm build && pnpm build:api",
"preview": "vite preview",
"typecheck": "vue-tsc --noEmit",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
"format": "prettier --write \"src/**/*.{js,ts,vue,scss,css,json}\"",
"db:generate": "drizzle-kit generate",
"db:migrate": "tsx server/migrate.ts",
"db:studio": "drizzle-kit studio",
"deploy:cf": "pnpm build && wrangler pages deploy dist",
"deploy:vercel": "vercel --prod",
"release": "bash scripts/release.sh"
},
"dependencies": {
"@libsql/client": "^0.14.0",
"@mdi/font": "^7.4.47",
"bcryptjs": "^2.4.3",
"dotenv": "^16.4.5",
"drizzle-orm": "^0.36.4",
"pinia": "^2.2.8",
"vue": "^3.5.13",
"vue-router": "^4.4.5",
"vuedraggable": "^4.1.0",
"vuetify": "^3.7.4"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/node": "^22.10.2",
"@vitejs/plugin-vue": "^5.2.1",
"@vue/eslint-config-prettier": "^10.1.0",
"@vue/eslint-config-typescript": "^14.1.3",
"concurrently": "^9.1.0",
"drizzle-kit": "^0.29.1",
"esbuild": "^0.27.1",
"eslint": "^9.17.0",
"eslint-plugin-vue": "^9.31.0",
"prettier": "^3.4.2",
"sass": "^1.83.0",
"sass-loader": "^16.0.4",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"vite": "^6.0.3",
"vite-plugin-vuetify": "^2.0.4",
"vue-tsc": "^2.1.10",
"wrangler": "^4.51.0"
},
"packageManager": "pnpm@10.23.0"
}