-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
77 lines (77 loc) · 2.39 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
68
69
70
71
72
73
74
75
76
77
{
"name": "groundwork",
"description": "A monorepo boilerplate using pnpm, nx, and lerna-lite.",
"version": "0.0.17",
"type": "module",
"private": true,
"author": "Matthew Waldron",
"workspaces": [
"apps/*",
"configs/**",
"docs/**",
"packages/*"
],
"scripts": {
"prepare": "husky",
"preinstall": "npx only-allow pnpm",
"commit": "git-cz",
"delete": "rimraf pnpm-lock.yaml .nx lerna-debug.log node_modules",
"lint:secrets": "npx secretlint **/*",
"lint:format": "prettier --write .",
"lint:packages": "node ./publint.js",
"lint:deps": "npx syncpack lint --config .syncpackrc",
"lint:monorepo": "npx manypkg check",
"lint:mr": "run-p lint:secrets lint:format lint:packages lint:deps lint:monorepo",
"nx:graph": "npx nx graph",
"update:deps": "npx syncpack update",
"list:deps": "npx syncpack list",
"list:packages": "lerna ls -l -all",
"list:changed": "lerna changed -l -all",
"dev": "npx nx run-many -t dev",
"lint:knip": "npx nx run-many -t lint:knip",
"lint:types": "npx nx run-many -t lint:types",
"lint": "npx nx run-many -t lint",
"test": "npx nx run-many -t test",
"test:watch": "npx nx run-many -t test:watch",
"clean": "npx nx run-many -t clean",
"build": "npx nx run-many -t build",
"preview": "npx nx run-many -t preview",
"bootstrap:ci": "pnpm i --frozen-lockfile",
"version:ci": "HUSKY=0 lerna version --yes",
"publish:ci": "lerna publish from-package --yes"
},
"license": "MIT",
"dependencies": {
"@arethetypeswrong/cli": "0.15.3",
"@commitlint/cli": "18.6.1",
"@commitlint/config-conventional": "18.6.3",
"@lerna-lite/changed": "3.6.0",
"@lerna-lite/cli": "3.6.0",
"@lerna-lite/list": "3.6.0",
"@lerna-lite/publish": "3.6.0",
"@lerna-lite/version": "3.6.0",
"@manypkg/cli": "0.21.4",
"@nrwl/cli": "15.9.3",
"@nrwl/nx-cloud": "18.0.1",
"@secretlint/secretlint-rule-preset-recommend": "8.2.4",
"@types/node": "20.14.9",
"commitizen": "4.3.0",
"cz-conventional-changelog": "3.3.0",
"execa": "8.0.1",
"husky": "9.0.11",
"knip": "4.6.0",
"lint-staged": "15.2.7",
"npm-run-all2": "6.2.0",
"nx": "17.3.2",
"prettier": "3.3.2",
"publint": "0.2.8",
"secretlint": "8.2.4",
"syncpack": "12.3.3",
"typescript": "5.5.2"
},
"manypkg": {
"ignoredRules": [
"INTERNAL_MISMATCH"
]
}
}