-
Notifications
You must be signed in to change notification settings - Fork 79
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 788 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 788 Bytes
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
{
"private": true,
"name": "@ORGANIZATION/PROJECT",
"version": "0.1.0",
"description": "Backend for PROJECT",
"scripts": {
"build": "pnpm -r --if-present build",
"dev": "pnpm -C packages/backend dev",
"format": "pnpm -r --if-present format",
"lint": "pnpm -r --if-present lint",
"start": "pnpm -C packages/backend start",
"test": "pnpm -C packages/backend test"
},
"repository": {
"type": "git",
"url": "https://github.com/samchon/backend"
},
"author": "AUTHOR",
"license": "MIT",
"bugs": {
"url": "https://github.com/samchon/backend/issues"
},
"homepage": "https://github.com/samchon/backend",
"packageManager": "pnpm@10.10.0",
"pnpm": {
"onlyBuiltDependencies": [
"prisma",
"@prisma/engines"
]
}
}