-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
103 lines (103 loc) · 3.46 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "nuxt-app",
"private": true,
"scripts": {
"build": "nuxt build",
"dev": "rm -rf .nuxt && nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"db:generate": "drizzle-kit generate:pg --config drizzle.config.ts",
"db:drop": "drizzle-kit drop --config drizzle.config.ts",
"db:migration:generate": "npm exec drizzle-kit generate:pg --out migrations --schema server/db/schema.ts",
"db:migration:run": "npm exec drizzle-kit push:pg",
"db:studio": "npx drizzle-kit studio",
"db:drop:all": "drizzle-kit drop:all --config drizzle.config.ts",
"code:format": "prettier --write --ignore-path .gitignore \"**/*.{js,ts,json,md,vue}\"",
"code:lint": "eslint --ext .js,.ts,.vue --ignore-path .gitignore .",
"code:lint:fix": "npm run code:lint -- --fix"
},
"devDependencies": {
"@iconify-json/charm": "^1.1.9",
"@iconify-json/ci": "^1.1.10",
"@iconify-json/fluent": "^1.1.27",
"@iconify-json/ic": "^1.1.14",
"@iconify-json/logos": "^1.1.34",
"@iconify-json/material-symbols": "^1.1.56",
"@iconify-json/mdi": "^1.1.54",
"@iconify-json/ph": "^1.1.6",
"@nuxt/devtools": "latest",
"@nuxtjs/eslint-config-typescript": "^12.0.0",
"@types/bcrypt": "^5.0.0",
"@types/bcryptjs": "^2.4.2",
"@types/jsonwebtoken": "^9.0.2",
"@types/node": "^18.17.3",
"@types/ws": "^8.5.5",
"@typescript-eslint/parser": "^6.3.0",
"@unocss/nuxt": "^0.54.3",
"@unocss/transformer-directives": "^0.55.0",
"@unocss/transformer-variant-group": "^0.55.0",
"@vue-macros/nuxt": "^1.7.1",
"dotenv": "^16.3.1",
"drizzle-kit": "^0.19.12",
"eslint": "^8.46.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"hotscript": "^1.0.13",
"nuxt": "3.6.5",
"nuxt-scheduler": "^0.0.16",
"pg": "^8.11.2",
"postgres": "^3.3.5",
"prettier": "^3.0.1",
"sass": "^1.65.1",
"typescript": "^5.1.6",
"unplugin-icons": "^0.16.5",
"unplugin-vue-components": "^0.25.1",
"vite-plugin-purge-icons": "^0.9.2"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.391.0",
"@aws-sdk/client-ses": "^3.391.0",
"@chronicstone/vue-sweettools": "^0.4.0",
"@defer/client": "^1.8.1",
"@googlemaps/google-maps-services-js": "^3.3.35",
"@huntersofbook/naive-ui-nuxt": "^1.1.0",
"@imqueue/pg-pubsub": "^1.7.0",
"@maizzle/framework": "^4.5.0",
"@neondatabase/serverless": "^0.5.7",
"@nuxt/image-edge": "1.0.0-rc.1-28180077.d51e794",
"@pinia/nuxt": "^0.4.11",
"@t3-oss/env-nuxt": "^0.6.0",
"@trpc/client": "^10.37.1",
"@trpc/server": "^10.37.1",
"@unocss/reset": "^0.55.0",
"@upstash/redis": "^1.22.0",
"@vuelidate/validators": "^2.0.4",
"@vueuse/nuxt": "^10.3.0",
"aws-sdk": "^2.1444.0",
"axios": "^1.4.0",
"bcrypt": "^5.1.1",
"bcryptjs": "^2.4.3",
"consola": "^3.2.3",
"dayjs": "^1.11.9",
"deepmerge-ts": "^5.1.0",
"drizzle-orm": "^0.28.1",
"drizzle-zod": "^0.5.0",
"gray-matter": "^4.0.3",
"handlebars": "^4.7.8",
"jsonwebtoken": "^9.0.1",
"jwt-decode": "^3.1.2",
"markdown-it-attrs": "^4.1.6",
"mock-aws-s3": "^4.0.2",
"nock": "^13.3.3",
"p-queue": "^7.3.4",
"trpc-nuxt": "^0.10.6",
"ts-pattern": "^5.0.5",
"typed-emitter": "^2.1.0",
"vue-tsc": "^1.8.8",
"vue3-emoji-picker": "^1.1.7",
"vue3-google-map": "^0.15.0",
"vue3-google-signin": "^1.3.1",
"zod": "^3.21.4"
}
}