-
Notifications
You must be signed in to change notification settings - Fork 1.2k
/
package.json
58 lines (58 loc) · 1.48 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
{
"name": "chatgpt-admin-web",
"version": "3.2.4",
"description": "ChatGPT Admin Web",
"license": "MIT",
"author": "AprilNEA <[email protected]> (https://sku.moe)",
"repository": {
"type": "git",
"url": "git+https://github.com/AprilNEA/ChatGPT-Admin-Web"
},
"workspaces": [
"apps/*",
"packages/*",
"prisma"
],
"scripts": {
"build": "turbo run build",
"build:frontend": "turbo run build --filter frontend",
"dev": "turbo run dev --parallel",
"start": "turbo run start",
"lint": "turbo run lint",
"test": "vitest run",
"prettier": "prettier --write .",
"db:init": "prisma db push && prisma db seed",
"db:generate": "prisma generate"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "latest",
"@types/node": "latest",
"prettier": "latest",
"prisma": "5.6.0",
"ts-node": "latest",
"turbo": "latest",
"typescript": "latest",
"vite": "^5.0.7",
"vite-tsconfig-paths": "^4.2.2",
"vitest": "^1.0.2",
"zod": "latest"
},
"prisma": {
"schema": "prisma/schema.prisma",
"seed": "ts-node prisma/seed.ts"
},
"engines": {
"node": ">=18"
},
"pnpm": {
"overrides": {
"@liaoliaots/nestjs-redis>@nestjs/common": "^10.0.0",
"@liaoliaots/nestjs-redis>@nestjs/core": "^10.0.0",
"@liaoliaots/nestjs-redis>@nestjs/terminus": "^10.0.0"
},
"allowedDeprecatedVersions": {
"sourcemap-codec": "1.4.8"
}
},
"packageManager": "[email protected]"
}