-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.29 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",
"private": true,
"version": "4.6.0",
"packageManager": "[email protected]",
"type": "module",
"scripts": {
"build": "nx run-many -t build",
"format": "nx run-many -t format",
"postinstall": "yarn dlx simple-git-hooks",
"lint": "nx run-many -t lint",
"test": "nx run-many -t test && run test:licenses",
"test:licenses": "run test:licenses:base --unknown --failOn 'UNLICENSED;UNKNOWN' --excludePrivatePackages",
"test:licenses:base": "run pnpify license-checker-rseidelsohn --excludePackages 'root'"
},
"simple-git-hooks": {
"post-checkout": "yarn install",
"post-merge": "yarn install",
"pre-commit": "yarn lint"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"@yarnpkg/pnpify": "^4.1.3",
"concurrently": "^8.2.2",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-prettier": "^5.2.1",
"lerna": "^8.1.9",
"license-checker-rseidelsohn": "^4.4.2",
"nx": "^19.8.14",
"prettier": "^3.4.2",
"prettier-plugin-jsdoc": "^1.3.0",
"prettier-plugin-pkgsort": "^0.2.1",
"prettier-plugin-sort-json": "^3.1.0",
"typescript": "^5.7.2"
},
"workspaces": [
"packages/*"
]
}