-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
72 lines (72 loc) · 2.18 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
{
"name": "nuxt-app",
"type": "module",
"private": true,
"scripts": {
"prepare": "husky && husky install",
"build": "APP_ENV=build nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"exportSql": "npx prisma migrate diff --from-empty --to-schema-datasource prisma/schema.prisma --script > prisma/migrations/20240516050303_init/migration.sql",
"devExportSql": "npx prisma migrate diff --to-schema-datamodel prisma\\schema.prisma --from-migrations prisma\\migrations --shadow-database-url postgresql://postgres:a123456@localhost:5432/discuss --script",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"lint-staged": "lint-staged"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.614.0",
"@aws-sdk/s3-request-presigner": "^3.614.0",
"@iconify-json/carbon": "^1.1.36",
"@nuxt/ui": "^2.17.0",
"@prisma/adapter-pg": "^5.16.2",
"@prisma/client": "5.16.1",
"@vueuse/components": "^10.11.0",
"@vueuse/core": "^10.11.0",
"@vueuse/nuxt": "^10.11.0",
"bcryptjs": "^2.4.3",
"cache-manager": "^5.7.3",
"dayjs": "^1.11.11",
"js-sha256": "^0.11.0",
"jsonwebtoken": "^9.0.2",
"markdown-it-link-attributes": "^4.0.1",
"md-editor-v3": "^4.17.3",
"nodemailer": "^6.9.14",
"nuxt": "^3.12.3",
"nuxt-scheduler": "^0.1.9",
"pg": "^8.12.0",
"short-uuid": "^5.2.0",
"tailwindcss": "^3.4.5",
"vue": "^3.4.31",
"vue-router": "^4.4.0",
"vue-sonner": "^1.1.3",
"zod": "^3.23.8"
},
"devDependencies": {
"@antfu/eslint-config": "^2.22.3",
"@types/bcryptjs": "^2.4.6",
"@types/cache-manager": "^4.0.6",
"@types/grecaptcha": "^3.0.9",
"@types/jsonwebtoken": "^9.0.6",
"@types/markdown-it-link-attributes": "^3.0.5",
"@types/nodemailer": "^6.4.15",
"@types/pg": "^8.11.6",
"@types/shortid": "^0.0.32",
"eslint": "9.4.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.7",
"prisma": "^5.16.2",
"typescript": "^5.5.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,vue,jsx,tsx}": [
"eslint --cache --fix"
]
}
}