-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
83 lines (83 loc) · 2.31 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
76
77
78
79
80
81
82
83
{
"name": "ving",
"description": "An opinionated web services starter for Nuxt3 that provides REST and per-field privileges out of the box.",
"private": true,
"type": "module",
"imports": {
"#ving/*": "./ving/*"
},
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev --host",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"tests": "export $(cat .env | xargs)&& vitest",
"docs:dev": "vitepress dev ving/docs",
"docs:build": "vitepress build ving/docs",
"docs:preview": "vitepress preview ving/docs"
},
"overrides": {
"vue": "latest"
},
"devDependencies": {
"@featherscloud/pinion": "^0.5.3",
"@marknotton/env": "^2.0.0",
"@nuxtjs/tailwindcss": "^6.12.0",
"@primevue/nuxt-module": "^4.0.0-rc.1",
"@pulumi/aws": "^6.0.0",
"@pulumi/awsx": "^2.0.2",
"@pulumi/command": "^0.9.2",
"@pulumi/pulumi": "^3.0.0",
"@vueuse/core": "^10.9.0",
"@vueuse/nuxt": "^10.9.0",
"drizzle-kit": "^0.20.13",
"env-file-rw": "^1.0.0",
"nuxt": "^3.12.2",
"nuxt-icon": "^0.3.3",
"nuxt-primevue": "^0.2.2",
"nuxt-security": "^1.1.0",
"typescript": "^4.9.5",
"vitepress": "^1.0.0-rc.44",
"vitest": "^0.28.5"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.504.0",
"@aws-sdk/s3-request-presigner": "^3.504.0",
"@keyv/redis": "^2.8.4",
"@pinia/nuxt": "^0.4.11",
"@primevue/themes": "^4.0.0-rc.1",
"bcryptjs": "^2.4.3",
"bullmq": "^5.3.0",
"citty": "^0.1.5",
"date-fns": "^2.30.0",
"defu": "^6.1.4",
"dotenv": "^16.4.5",
"drizzle-orm": "^0.29.3",
"dropzone": "^6.0.0-beta.2",
"email-templates": "^11.1.1",
"ioredis": "^5.3.2",
"keyv": "^4.5.4",
"keyv-anyredis": "^3.3.0",
"lodash": "^4.17.21",
"md-editor-v3": "^4.13.2",
"mysql2": "^3.9.7",
"nodemailer": "^6.9.8",
"nunjucks": "^3.2.4",
"ofetch": "^1.3.4",
"perfect-debounce": "^0.1.3",
"pinia": "^2.1.7",
"primeflex": "^3.3.1",
"primeicons": "^6.0.1",
"primevue": "^4.0.0-rc.1",
"sanitize-filename": "^1.6.3",
"scule": "^1.2.0",
"skip32": "^1.3.0",
"tailwindcss-primeui": "^0.3.1",
"ua-parser-js": "^1.0.37",
"uuid": "^9.0.1",
"winston": "^3.11.0",
"winston-daily-rotate-file": "^5.0.0",
"zod": "^3.22.4"
}
}