-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.26 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
40
41
42
{
"name": "root",
"license": "BSD-2-Clause",
"workspaces": [
"packages/*"
],
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/vivid-planet/comet-react-app-auth"
},
"scripts": {
"clean": "lerna run clean --stream --parallel",
"start": "pm2 start ecosystem.config.js",
"build": "lerna run build --concurrency=1 --stream",
"publish:release": "lerna publish --force-publish --no-push --no-git-tag-version --no-private",
"lint": "lerna run lint --concurrency=1 --stream",
"lint:eslint": "lerna run lint:eslint --concurrency=1 --stream",
"lint:tsc": "lerna run lint:tsc --concurrency=1 --stream",
"lint:lib": "yarn lint --no-private",
"postinstall": "husky install"
},
"devDependencies": {
"husky": "^7.0.0",
"lerna": "^4.0.0",
"lint-staged": "^12.0.0",
"pm2": "^5.0.0",
"prettier": "^2.0.0",
"rimraf": "^3.0.0",
"typescript": "^4.0.0",
"wait-on": "^6.0.0",
"yarn-run-all": "^3.0.0"
},
"engines": {
"node": "14",
"yarn": "3"
},
"resolutions": {
"@typescript-eslint/parser": "^5.0.0"
},
"packageManager": "yarn@3.2.0"
}