-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
20 lines (20 loc) · 812 Bytes
/
Copy pathpackage.json
File metadata and controls
20 lines (20 loc) · 812 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
"name": "hahasns",
"version": "1.0.0",
"private": true,
"description": "HahaSNS — 轻社交 · 轻论坛 · 轻社区, an original lightweight social-community platform (NestJS + React)",
"engines": {
"node": ">=20"
},
"scripts": {
"install:all": "npm install --no-audit --no-fund && npm --prefix server-nest install && npm --prefix client install",
"dev": "concurrently -n api,client -c blue,magenta \"npm --prefix server-nest run start:dev\" \"npm --prefix client run dev\"",
"build": "npm --prefix client run build && npm --prefix server-nest run build",
"start": "npm --prefix server-nest run start:prod",
"changelog:gen": "node scripts/gen-changelog.mjs",
"lint:copy": "node scripts/lint-copy.mjs"
},
"devDependencies": {
"concurrently": "^9.0.1"
}
}