-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.52 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.52 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
{
"name": "nuxt-app",
"private": true,
"type": "module",
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "vitest",
"test:watch": "vitest --watch",
"migrate:create": "drizzle-kit generate:sqlite",
"migrate:check": "drizzle-kit check:sqlite",
"migrate:up": "drizzle-kit push:sqlite"
},
"dependencies": {
"@iconify-json/mdi": "^1.1.64",
"@libsql/client": "^0.5.6",
"@nuxt/ui": "^2.14.1",
"@panva/jose": "^1.9.3",
"@vueuse/nuxt": "^10.9.0",
"chart.js": "^4.4.2",
"date-fns": "^2.30.0",
"drizzle-orm": "^0.29.5",
"jose": "github:panva/jose",
"nuxt": "^3.10.3",
"pinia": "^2.1.7",
"v-calendar": "^3.1.2",
"vue": "^3.4.19",
"vue-chartjs": "^5.3.0",
"vue-router": "^4.3.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@nuxt/eslint-config": "^0.2.0",
"@nuxt/image": "^1.3.0",
"@nuxt/test-utils": "^3.11.0",
"@pinia/nuxt": "^0.5.1",
"@vue/test-utils": "^2.4.4",
"drizzle-kit": "^0.20.14",
"eslint": "^8.57.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-vue": "^9.22.0",
"happy-dom": "^13.6.2",
"ofetch": "^1.3.3",
"playwright-core": "^1.42.1",
"typescript": "^5.3.3",
"vitest": "^1.3.1",
"vue-i18n": "^9.10.0",
"vue-tsc": "^1.8.27",
"wrangler": "^3.50.0"
}
}