forked from AI-READI/logwatch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.39 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
{
"name": "logwatch",
"version": "0.0.0",
"private": true,
"scripts": {
"build": "nuxt build && yarn prisma:generate",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"lint:js": "eslint --ext .js,.ts,.vue --ignore-path .gitignore .",
"lint:prettier": "prettier --check .",
"lint": "pnpm lint:js && pnpm lint:prettier",
"lint:fix": "prettier --write --list-different . && pnpm lint:js --fix",
"test": "jest",
"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",
"scripts:deploy": "tsx ./scripts/deploy.ts",
"scripts:rl": "tsx ./scripts/rl.ts"
},
"dependencies": {
"@lucia-auth/adapter-prisma": "^4.0.1",
"@pinia/nuxt": "^0.5.1",
"@prisma/client": "^5.15.0",
"arctic": "^1.6.2",
"lucia": "^3.2.0",
"notivue": "^2.4.4",
"nuxt": "3.11.1",
"nuxt-helm": "^0.0.2",
"pinia": "^2.1.7",
"random-words": "^2.0.1",
"vue": "^3.4.21",
"vue-json-pretty": "^2.4.0",
"vue-router": "^4.3.0",
"zod": "^3.23.5"
},
"devDependencies": {
"@bg-dev/nuxt-naiveui": "^1.13.0",
"@faker-js/faker": "^8.4.1",
"@nuxtjs/color-mode": "^3.4.0",
"@nuxtjs/device": "^3.1.1",
"@nuxtjs/eslint-config-typescript": "^12.1.0",
"@nuxtjs/google-fonts": "^3.2.0",
"@nuxtjs/tailwindcss": "^6.12.0",
"@tailwindcss/typography": "^0.5.12",
"@types/sanitize-html": "^2.11.0",
"autoprefixer": "^10.4.19",
"dayjs-nuxt": "^2.1.9",
"dotenv": "^16.4.5",
"eslint": "8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-simple-import-sort": "^12.1.0",
"eslint-plugin-sort-keys-custom-order": "^1.0.5",
"eslint-plugin-unused-imports": "^3.1.0",
"jest": "^29.7.0",
"nock": "^13.5.4",
"npm-run-all": "^4.1.5",
"nuxt-icon": "^0.6.10",
"nuxt-rate-limit": "^1.2.0",
"postcss": "^8.4.38",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.14",
"prisma": "^5.15.0",
"tailwindcss-debug-screens": "^2.2.1",
"tsx": "^4.16.2"
},
"engines": {
"node": ">=18.0.0"
},
"volta": {
"node": "18.18.2",
"yarn": "1.22.19"
}
}