-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.11 KB
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 1.11 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
{
"name": "rightify",
"version": "2.0.0",
"description": "智能法律咨询系统 - 让公正触手可及",
"private": true,
"workspaces": [
"apps/*",
"frontend"
],
"scripts": {
"dev": "npm run dev:backend & npm run dev:frontend",
"dev:backend": "cd apps/backend && npm run start:dev",
"dev:frontend": "cd frontend && npm run dev",
"build": "npm run build:backend && npm run build:frontend",
"build:backend": "cd apps/backend && npm run build",
"build:frontend": "cd frontend && npm run build",
"start": "npm run start:backend",
"start:backend": "cd apps/backend && npm run start:prod",
"start:frontend": "cd frontend && npm run start",
"install:all": "npm install && cd apps/backend && npm install && cd ../../frontend && npm install",
"lint": "cd apps/backend && npm run lint",
"test": "cd apps/backend && npm run test",
"typecheck": "cd apps/backend && npx tsc --noEmit"
},
"keywords": [
"legal",
"ai",
"consultation",
"law",
"nestjs",
"nextjs"
],
"author": "",
"license": "MIT",
"engines": {
"node": ">=20.0.0"
}
}