-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.12 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.12 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
{
"name": "developer-profile",
"version": "1.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vue-tsc && vite build",
"preview": "vite preview",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
"server:dev": "cd server && npm run dev",
"server:install": "cd server && npm install",
"full:dev": "npm run server:dev & npm run dev"
},
"dependencies": {
"@auth0/auth0-vue": "^2.4.0",
"@supabase/supabase-js": "^2.54.0",
"@vueuse/core": "^10.7.0",
"class-variance-authority": "^0.7.0",
"clsx": "^2.0.0",
"lucide-vue-next": "^0.309.0",
"radix-vue": "^1.4.0",
"sqlite3": "^5.1.7",
"tailwind-merge": "^2.2.0",
"tailwindcss-animate": "^1.0.7",
"vue": "^3.4.0",
"vue-router": "^4.5.1"
},
"devDependencies": {
"@types/node": "^20.10.0",
"@vitejs/plugin-vue": "^5.0.0",
"autoprefixer": "^10.4.16",
"dotenv": "^17.2.1",
"postcss": "^8.4.32",
"supabase": "^2.33.9",
"tailwindcss": "^3.4.0",
"typescript": "^5.3.0",
"vite": "^5.0.0",
"vue-tsc": "^1.8.25"
}
}