-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.02 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "wsa-tollbooth",
"private": true,
"packageManager": "pnpm@8.6.7",
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"postinstall": "prisma generate && nuxt prepare",
"lint": "eslint --cache .",
"lint:fix": "eslint --cache --fix .",
"preview": "nuxt preview",
"typecheck": "vue-tsc --noEmit",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"devDependencies": {
"@antfu/eslint-config": "^0.39.7",
"@axiomhq/pino": "^0.1.2",
"@iconify-json/tabler": "^1.1.81",
"@nuxt/devtools": "latest",
"@nuxt/image": "1.0.0-rc.1",
"@nuxtjs/html-validator": "^1.5.1",
"@nuxtjs/turnstile": "^0.5.0",
"@prisma/client": "5.0.0",
"@qingu/vue-email": "^1.0.23",
"@tanstack/vue-query": "^4.29.25",
"@trpc/client": "^10.34.0",
"@trpc/server": "^10.34.0",
"@types/node": "^20.4.2",
"@unocss/eslint-config": "^0.53.5",
"@unocss/nuxt": "^0.53.5",
"@vueuse/core": "^10.2.1",
"@vueuse/integrations": "^10.2.1",
"@vueuse/nuxt": "^10.2.1",
"chart.js": "^4.3.0",
"consola": "^3.2.3",
"date-fns": "^2.30.0",
"date-fns-tz": "^2.0.0",
"eslint": "^8.44.0",
"lint-staged": "^13.2.3",
"nodemailer": "^6.9.3",
"nuxt": "^3.6.2",
"pinia": "^2.1.4",
"pino": "^8.14.1",
"pino-http": "^8.3.3",
"pino-pretty": "^10.0.1",
"primevue": "^3.30.0",
"prisma": "^5.0.0",
"qrcode": "^1.5.3",
"resend": "^0.17.1",
"sass": "^1.63.6",
"sharp": "^0.32.3",
"simple-git-hooks": "^2.8.1",
"std-env": "^3.3.3",
"superjson": "^1.12.4",
"trpc-nuxt": "^0.10.6",
"trpc-openapi": "^1.2.0",
"unstorage": "^1.8.0",
"vitepress": "1.0.0-beta.5",
"vue": "^3.3.4",
"vue-email": "^0.4.0",
"vue-tsc": "^1.8.4",
"zod": "^3.21.4"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*.{js,ts,tsx,vue,md}": [
"eslint --cache --fix"
]
}
}