-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.2 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.2 KB
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
{
"name": "root",
"private": true,
"workspaces": [
"packages/*"
],
"repository": {
"type": "git",
"url": "https://github.com/lamovv/ufly.git"
},
"devDependencies": {
"@babel/core": "^7.19.6",
"@babel/eslint-parser": "^7.18.9",
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"conventional-changelog-cli": "^2.1.1",
"eslint": "^8.20.0",
"husky": "^8.0.1",
"lerna": "^3.22.1",
"lint-staged": "^10.5.4",
"prettier": "^2.7.1"
},
"scripts": {
"postinstall": "husky install || true",
"bootstrap": "lerna bootstrap --force-local",
"i": "npm run clean && yarn install --ignore-scripts -s --force && lerna bootstrap --force-local",
"clean": "rm -rf node_modules && lerna clean -y",
"debug": "node --inspect packages/cli/bin/cli init",
"debug:brk": "node --inspect-brk packages/cli/bin/cli init",
"linkcli": "cd packages/cli/ && yarn link --no-package-lock",
"unlinkcli": "cd packages/cli/ && yarn unlink --no-package-lock",
"pub": "lerna publish",
"pub:all": "lerna publish --force-publish",
"pub:beta": "lerna publish --canary --preid beta",
"sync": "cd packages/cli/ && yarn sync"
}
}