-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
31 lines (31 loc) · 835 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
31
{
"name": "@lernaexample/root",
"version": "1.0.0",
"description": "",
"author": "",
"license": "ISC",
"private": true,
"scripts": {
"postinstall": "npm run bootstrap",
"build": "npm run update-index-files && lerna run build",
"bootstrap": "lerna bootstrap",
"update-index-files": "lerna run update-index-files",
"prettier": "prettier --write \"packages/**/src/**/*.ts\"",
"lint": "tslint -p tsconfig.json",
"lint:fix": "tslint --fix -p tsconfig.json",
"start:server": "lerna run start --stream --scope=@lernaexample/server"
},
"devDependencies": {
"lerna": "^3.20.2",
"prettier": "^2.0.5",
"tslint": "^6.1.2",
"typescript": "^3.8.3",
"tslint-config-prettier": "^1.18.0"
},
"dependencies": {},
"workspaces": {
"packages": [
"packages/*"
]
}
}