forked from public-ui/kolibri
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.86 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
{
"name": "root",
"private": true,
"scripts": {
"clean": "git clean -f -d -X",
"clean:pnpm": "lerna exec --stream -- rimraf pnpm-lock.yaml && rimraf pnpm-lock.yaml && pnpm clean",
"depcheck": "lerna run depcheck",
"format": "lerna run format",
"lint": "lerna run lint",
"ts-prune": "git clean -f -d -X packages/adapters/**/src && lerna exec --ignore @public-ui/slidev --stream -- npx ts-prune src -e",
"ncu:major": "ncu -x rimraf && lerna exec --stream -- ncu -x rimraf",
"ncu:minor": "ncu -t minor -u -x rimraf && lerna exec --stream -- ncu -t minor -u -x @slidev/cli,rimraf,rxjs,typescript,unbuild,zone.js",
"ncu:patch": "ncu -t patch -u -x rimraf && lerna exec --stream -- ncu -t patch -u -x rimraf,unbuild",
"pack": "npx lerna exec --stream -- npm pack",
"postinstall": "lerna exec --stream -- pnpm i --no-frozen-lockfile",
"prepare:husky": "rimraf .husky && husky install && npm-run-all prepare:husky:*",
"prepare:husky:commitlint": "husky add .husky/commit-msg \"npx commitlint --edit $1\"",
"prepare:husky:depcheck": "husky add .husky/pre-commit \"pnpm depcheck\"",
"prepare:husky:format": "husky add .husky/pre-commit \"pnpm format\"",
"prepare:husky:lint": "husky add .husky/pre-commit \"pnpm lint\"",
"prepare:husky:ts-prune": "husky add .husky/pre-commit \"pnpm ts-prune\"",
"reinstall": "pnpm clean:pnpm && pnpm i",
"update": "pnpm ncu:patch && pnpm ncu:minor && pnpm ncu:major"
},
"devDependencies": {
"@commitlint/cli": "17.6.1",
"@commitlint/config-conventional": "17.6.1",
"@types/node": "ts4.9",
"cross-env": "7.0.3",
"depcheck": "1.4.3",
"husky": "8.0.3",
"lerna": "6.6.1",
"license-report": "6.4.0",
"lint-staged": "13.2.2",
"npm-check-updates": "16.10.9",
"npm-run-all": "4.1.5",
"pnpm": "8.4.0",
"prettier": "2.8.8",
"rimraf": "3.0.2",
"ts-node": "10.9.1",
"ts-prune": "0.10.3",
"typescript": "5.0.4"
}
}