-
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) · 1.99 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.99 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": "stay-on-brand",
"private": true,
"version": "0.1.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vue-tsc -b && vite build",
"preview": "vite preview",
"test": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "eslint . --fix",
"format": "prettier --write src/",
"type-check": "vue-tsc --noEmit",
"prepare": "husky",
"gateway": "ts-node gateway/index.ts",
"keycard": "npm run keycard:setup && ts-node keycard/index.ts",
"keycard:setup": "cp node_modules/keycard-subscription-backend/prisma/schema.prisma prisma/schema.prisma && npx prisma generate",
"vercel": "npx vercel dev"
},
"dependencies": {
"@iconify/vue": "^5.0.0",
"@prisma/client": "^7.2.0",
"@types/csrf": "^1.3.2",
"@unhead/vue": "^2.1.2",
"cors": "^2.8.5",
"csrf": "^3.1.0",
"dotenv": "^17.2.3",
"express": "^5.2.1",
"gateway-cognito-auth": "^1.1.0",
"keycard-subscription-backend": "^1.1.1",
"pinia": "^3.0.4",
"prisma": "^7.2.0",
"vue": "^3.5.15",
"vue-router": "^4.4.5"
},
"devDependencies": {
"@tailwindcss/vite": "^4.0.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/vue": "^8.1.0",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/node": "^22.19.3",
"@vercel/node": "^5.5.20",
"@vitejs/plugin-vue": "^6.0.3",
"@vitest/coverage-v8": "^4.0.16",
"@vue/eslint-config-prettier": "^10.1.0",
"@vue/eslint-config-typescript": "^14.1.3",
"@vue/test-utils": "^2.4.6",
"eslint": "^9.17.0",
"eslint-plugin-vue": "^10.6.2",
"husky": "^9.1.7",
"jsdom": "^27.4.0",
"lint-staged": "^16.2.7",
"prettier": "^3.4.2",
"tailwindcss": "^4.0.0",
"ts-node": "^10.9.2",
"typescript": "~5.9.3",
"vite": "^7.3.1",
"vitest": "^4.0.16",
"vue-tsc": "^3.2.2"
},
"lint-staged": {
"*.{ts,tsx,vue}": [
"eslint --fix",
"prettier --write"
],
"*.{css,md,json}": [
"prettier --write"
]
}
}