-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
67 lines (67 loc) · 2.05 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "root",
"private": true,
"devDependencies": {
"@commitlint/cli": "^18.4.1",
"@commitlint/config-conventional": "^18.4.0",
"@types/jest": "^29.2.4",
"@types/node": "^18.11.14",
"@typescript-eslint/eslint-plugin": "^6.7.3",
"@typescript-eslint/parser": "^6.7.3",
"cross-env": "^7.0.2",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.6.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-lerna": "^2.0.0",
"eslint-import-resolver-typescript": "^3.5.2",
"eslint-plugin-import": "^2.23.3",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-unused-imports": "^3.0.0",
"husky": "^8.0.1",
"jest": "^29.3.1",
"lerna": "^7.4.2",
"mkdirp": "^2.1.3",
"npm-run-all": "^4.1.5",
"prettier-airbnb-config": "^1.0.0",
"replace-in-file": "^7.0.2",
"rimraf": "^5.0.5",
"shx": "^0.3.2",
"ts-jest": "^29.0.3",
"ts-node": "^10.0.0",
"typescript": "^5.2.2"
},
"workspaces": {
"packages": [
"packages/cli",
"packages/core",
"packages/detection",
"packages/mibs",
"packages/service"
]
},
"scripts": {
"rsync:ubuntu": "rsync -avz --delete --exclude=.git --include=.gitignore --filter=':- .gitignore' . user@192.168.2.33:~/src/nibus",
"bootstrap": "lerna bootstrap",
"build": "lerna run build",
"test": "lerna run test --stream",
"clean": "rimraf packages/*/{lib,build,.next}",
"release:publish": "lerna publish from-package --dist-tag latest && git push --follow-tags origin master",
"release:publish:dry-run": "lerna publish from-package --dist-tag latest --registry=\"http://localhost:4873/\"",
"release:version": "lerna version --no-push",
"prepare": "husky install",
"yalc:push": "lerna run yalc:push"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"resolutions": {
"supports-color": "^8",
"onetime": "^5",
"chalk": "^4"
},
"dependencies": {}
}