-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 871 Bytes
/
Copy pathpackage.json
File metadata and controls
26 lines (26 loc) · 871 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
{
"name": "acme-monorepo",
"private": true,
"workspaces": {
"packages": [
"packages/*"
]
},
"scripts": {
"clean:node_modules": "rimraf ./node_modules **/{dist,node_modules}/",
"clean:tsbuildinfo": "rimraf ./packages/*/tsconfig*tsbuildinfo",
"clean": "npm run clean:node_modules && npm run clean:tsbuildinfo",
"build": "tsc --build tsconfig.build.json",
"build:watch": "tsc --build tsconfig.build.json --watch",
"build:clean": "tsc --build tsconfig.build.json --clean",
"start:web": "lerna run start --stream --scope=@acme/web",
"start:api": "lerna run start --stream --scope=@acme/api",
"release": "lerna version --conventional-commits",
"postinstall": "npm run clean:tsbuildinfo && npm run build"
},
"devDependencies": {
"lerna": "^3.20.2",
"rimraf": "^3.0.2",
"typescript": "^3.8.3"
}
}