-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.63 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
{
"name": "my-note",
"private": true,
"type": "module",
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"typecheck": "npx nuxi typecheck",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"unit-test": "vitest",
"e2e": "npx playwright test",
"e2e:ui": "npx playwright --ui",
"e2e:report": "npx playwright test --reporter dot",
"e2e:web": "npx playwright show-report"
},
"dependencies": {
"@nuxt/eslint": "0.7.4",
"@nuxtjs/color-mode": "3.5.2",
"@vueuse/core": "^12.2.0",
"bcryptjs": "^2.4.3",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"dotenv": "^16.4.7",
"drizzle-orm": "^0.38.3",
"drizzle-seed": "^0.3.0",
"drizzle-zod": "^0.6.1",
"eslint": "^8.57.0 || ^9.0.0",
"jsonwebtoken": "^9.0.2",
"lucide-vue-next": "^0.469.0",
"mysql2": "^3.12.0",
"nuxt": "^3.15.0",
"radix-vue": "^1.9.12",
"shadcn-nuxt": "0.11.3",
"tailwind-merge": "^2.6.0",
"tailwindcss-animate": "^1.0.7",
"vue": "latest",
"vue-router": "latest",
"zod-validation-error": "^3.4.0"
},
"devDependencies": {
"@nuxt/test-utils": "^3.15.1",
"@nuxtjs/tailwindcss": "^6.12.2",
"@playwright/test": "^1.49.1",
"@types/bcryptjs": "^2.4.6",
"@types/jsonwebtoken": "^9.0.7",
"@vitest/ui": "2.1.8",
"@vue/test-utils": "^2.4.6",
"drizzle-kit": "^0.30.1",
"happy-dom": "^16.5.2",
"playwright-core": "^1.49.1",
"tsx": "^4.19.2",
"typescript": "^5.7.3",
"vitest": "^2.1.8",
"vue-tsc": "^2.2.0"
}
}