-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.14 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.14 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
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "love-story-website",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "run-p type-check \"build-only {@}\" --",
"preview": "vite preview",
"test:unit": "vitest",
"test:e2e": "playwright test",
"build-only": "vite build",
"type-check": "vue-tsc --build --force && tsc --project tsconfig.api.json --noEmit",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix",
"format": "prettier --write src/",
"vercel-build": "vite build",
"clear-db": "tsx scripts/clear-database.ts",
"test:serverless": "tsx test-serverless-api.ts"
},
"dependencies": {
"@emailjs/nodejs": "^5.0.2",
"@types/formidable": "^3.4.5",
"@vercel/analytics": "^1.5.0",
"@vercel/functions": "^1.0.0",
"@vercel/node": "^3.0.0",
"@vercel/speed-insights": "^1.2.0",
"@vitejs/plugin-vue": "^5.2.4",
"axios": "^1.12.2",
"bcryptjs": "^2.4.3",
"dayjs": "^1.11.18",
"eruda": "^3.0.1",
"formidable": "^3.5.4",
"heroicons": "^2.2.0",
"jsonwebtoken": "^9.0.0",
"mongodb": "^6.0.0",
"photoswipe": "^5.4.4",
"pinia": "^3.0.3",
"vue": "^3.5.22",
"vue-router": "^4.5.1",
"vue3-carousel": "^0.16.0"
},
"devDependencies": {
"@playwright/test": "^1.55.1",
"@tsconfig/node22": "^22.0.2",
"@types/jsdom": "^21.1.7",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^22.18.6",
"@vitejs/plugin-vue": "^6.0.1",
"@vitest/eslint-plugin": "^1.3.12",
"@vue/eslint-config-prettier": "^10.2.0",
"@vue/eslint-config-typescript": "^14.6.0",
"@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "^0.7.0",
"dotenv": "^17.2.2",
"eslint": "^9.36.0",
"eslint-plugin-playwright": "^2.2.2",
"eslint-plugin-vue": "^10.5.0",
"jiti": "^2.6.0",
"jsdom": "^26.1.0",
"lightningcss": "^1.30.1",
"npm-run-all2": "^8.0.4",
"prettier": "^3.6.2",
"tsx": "^4.20.6",
"typescript": "^5.9.2",
"vite": "^7.1.7",
"vite-plugin-pwa": "^1.0.3",
"vite-plugin-vue-devtools": "^8.0.2",
"vitest": "^3.2.4",
"vue-tsc": "^3.0.8"
},
"packageManager": "pnpm@10.17.0"
}