-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.43 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.43 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
73
74
75
76
{
"name": "nuxt-starter",
"private": true,
"type": "module",
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"lint:js": "eslint --ext \".ts,.vue\" --ignore-path .gitignore .",
"lint:prettier": "prettier --check .",
"lint": "yarn lint:js && yarn lint:prettier",
"lint:fix": "prettier --write --list-different . && yarn lint:js --fix",
"prisma:generate": "prisma generate",
"prisma:migrate:deploy": "prisma migrate deploy",
"prisma:migrate:dev": "prisma migrate dev --preview-feature",
"prisma:studio": "prisma studio",
"prisma:db:push": "prisma db push",
"prisma:db:pull": "prisma db pull",
"postinstall": "nuxt prepare && prisma generate",
"reset": "rm -rf node_modules && rm -rf .nuxt && rm -rf .output && rm -rf dist && yarn install",
"prune-branches": "git removed-branches --prune --force"
},
"dependencies": {
"@vueuse/core": "^12.5.0",
"bcrypt": "^5.1.1",
"csv-parse": "^5.6.0",
"date-fns": "^4.1.0",
"marked": "^15.0.7",
"nodemailer": "^6.10.0",
"sanitize-html": "^2.14.0"
},
"devDependencies": {
"@antfu/eslint-config": "^3.14.0",
"@faker-js/faker": "^9.4.0",
"@nuxt/devtools": "2.3.0",
"@nuxt/eslint": "1.2.0",
"@nuxt/ui": "3.3.7",
"@nuxtjs/eslint-config-typescript": "^12.1.0",
"@prisma/client": "6.3.0",
"@stylistic/eslint-plugin-js": "^2.13.0",
"@tailwindcss/typography": "^0.5.16",
"@types/bcrypt": "^5.0.2",
"@types/nodemailer": "^6.4.17",
"@types/sanitize-html": "^2.13.0",
"@typescript-eslint/parser": "^8.21.0",
"dayjs-nuxt": "2.1.11",
"eslint": "8.57.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-prettier": "^5.2.3",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-sort-keys-custom-order": "^2.2.1",
"eslint-plugin-unused-imports": "^4.1.4",
"eslint-plugin-vue": "^9.32.0",
"nuxt": "^3.16.0",
"nuxt-auth-utils": "0.5.7",
"prettier": "^3.4.2",
"prettier-plugin-tailwindcss": "^0.6.10",
"prisma": "6.3.0",
"tailwindcss-debug-screens": "^2.2.1",
"tsx": "4.7.1",
"typescript": "^5.7.3",
"vue": "latest",
"zod": "^3.24.1"
},
"packageManager": "yarn@1.22.22",
"volta": {
"node": "22.13.0",
"yarn": "1.22.22"
},
"resolutions": {
"tailwindcss": "4.0.7",
"@tailwindcss/postcss": "4.0.7",
"@tailwindcss/vite": "4.0.7"
}
}