forked from wwwebman/lerna-monorepo-typescript-example
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 740 Bytes
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 740 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
{
"name": "@project/workspace",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"dev": "lerna run dev",
"build": "lerna run --parallel build",
"app:build": "lerna run --scope={@project/utils,@project/app} build",
"app:start": "lerna run --scope @project/app start",
"pretify": "prettier --write ."
},
"devDependencies": {
"@babel/core": "^7.10.3",
"babel-jest": "^26.1.0",
"babel-plugin-module-resolver": "4.0.0",
"jest": "^26.1.0",
"lerna": "3.22.1",
"prettier": "^2.0.5",
"tsconfig-paths": "3.9.0",
"typescript": "3.9.5"
},
"repository": {
"type": "git",
"url": "ssh://git@farpoint.get-ag.com:7999/pl/pvg-react.git"
},
"license": "MIT"
}