-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 928 Bytes
/
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
{
"name": "ts-monorepo-template",
"version": "1.0.0",
"description": "",
"scripts": {
"test": "npm run test --workspaces --if-present",
"lint": "npm run lint --workspaces --if-present",
"build": "npm run build --workspaces --if-present",
"start:package-b": "sh -c 'npm --prefix packages/package-b run start > ./packages/package-b/logs/package-b-$(date +\"%Y-%m-%d_%H-%M-%S\").log 2>&1'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lherlein/typescript-workspace-template.git"
},
"keywords": [],
"workspaces": [
"packages/*"
],
"author": "Luca Herlein",
"license": "MIT",
"devDependencies": {
"tsup": "^8.0.2",
"typescript": "^5.4.3",
"concurrently": "^6.3.0"
},
"bugs": {
"url": "https://github.com/lherlein/typescript-workspace-template/issues"
},
"homepage": "https://github.com/lherlein/typescript-workspace-template#readme"
}