-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 987 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": "packages",
"private": "true",
"repository": "[email protected]:jamieowen/packages.git",
"author": "Jamie Owen <[email protected]>",
"license": "MIT",
"scripts": {
"bootstrap": "lerna bootstrap",
"clean": "lerna run clean",
"build": "lerna run clean && lerna run build:es6 --sort && lerna run build --sort",
"build:es6": "lerna run clean && lerna run build:es6 --sort",
"build:es6:watch": "yarn build:es6 && lerna run build:es6:watch --no-sort --stream --concurrency 6",
"build:check": "lerna run build:check",
"link:sys": "lerna run link:sys",
"check-updates": "lerna run check-updates --stream",
"apply-updates": "lerna run apply-updates --stream"
},
"workspaces": [
"packages/*",
"examples"
],
"npmClient": "yarn",
"useWorkspaces": true,
"devDependencies": {
"@rollup/plugin-typescript": "^8.2.0",
"lerna": "^4.0.0",
"rimraf": "^3.0.2",
"rollup": "^2.39.0",
"typescript": "^4.1.5"
}
}