generated from jphacks/JP_sample
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.24 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.24 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
{
"name": "tk_b_2515",
"version": "1.0.0",
"private": true,
"description": "恋AI - AI-powered conversation practice application",
"packageManager": "pnpm@9.12.3",
"scripts": {
"dev": "concurrently \"pnpm dev:backend\" \"pnpm dev:frontend\" --names \"backend,frontend\" --prefix-colors \"blue,green\"",
"dev:frontend": "pnpm --filter frontend dev",
"dev:backend": "pnpm --filter backend dev",
"build:frontend": "pnpm --filter frontend build",
"build:backend": "pnpm --filter backend deploy",
"test": "pnpm --filter frontend test",
"lint": "biome lint --write .",
"format": "biome format --write .",
"check": "biome check --write .",
"prisma:generate": "prisma generate --schema=./prisma/schema.prisma",
"prisma:push": "prisma db push --schema=./prisma/schema.prisma",
"prisma:studio": "prisma studio --schema=./prisma/schema.prisma",
"postinstall": "pnpm prisma:generate",
"prepare": "husky install"
},
"keywords": [
"ai",
"conversation",
"practice"
],
"author": "",
"license": "ISC",
"devDependencies": {
"@biomejs/biome": "^2.2.5",
"concurrently": "^9.2.1",
"husky": "^8.0.0",
"tsx": "^4.20.6"
},
"dependencies": {
"@prisma/client": "^7.0.0",
"@prisma/client-runtime-utils": "^7.0.0",
"prisma": "^7.0.0"
}
}