-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
39 lines (39 loc) · 1.28 KB
/
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
32
33
34
35
36
37
38
39
{
"name": "root",
"private": true,
"scripts": {
"setup:dev": "npm run bootstrap && npm run build",
"lerna": "lerna",
"init": "lerna bootstrap",
"tsc": "lerna exec npm run tsc",
"build": "lerna exec npm run build",
"tslint": "lerna exec npm run tslint",
"test": "lerna exec npm test",
"clean": "lerna clean",
"bootstrap": "lerna bootstrap --hoist --no-ci",
"rimraf": "lerna exec npm run rimraf",
"typedoc": "npm run lerna exec npm run typedoc",
"preparePublish": "npm run rimraf && npm run tsc && npm run tslint && npm run test",
"publish": "lerna publish",
"setup": "npm run init && npm run tsc",
"updateVersions:minor": "lerna version minor --yes --no-push --no-git-tag-version",
"updateVersions:patch": "lerna version patch --yes --no-push --no-git-tag-version",
"publishPackages": "lerna publish from-package --yes --no-verify-access"
},
"devDependencies": {
"@lerna/project": "^4.0.0",
"@types/jest": "^24.0.25",
"@types/lodash": "^4.14.149",
"@types/node": "^13.1.5",
"auto-changelog": "^2.3.0",
"jest": "^24.9.0",
"lerna": "^3.20.2",
"prettier": "^1.19.1",
"ts-jest": "^24.3.0",
"tslint": "^5.20.1",
"typescript": "^4.3.5"
},
"optionalDependencies": {
"fsevents": "^2.3.2"
}
}