-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
45 lines (45 loc) · 1.46 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
{
"name": "@softarc/sheriff",
"version": "0.0.1",
"description": "Modularity for TypeScript Projects",
"license": "MIT",
"scripts": {
"build:all": "npx nx run-many --target=build && chmod +x dist/packages/core/src/bin/main.js",
"commit": "commit",
"lint:all": "eslint ./packages",
"link:sheriff": "yarn run build:all && yalc publish dist/packages/core && yalc publish dist/packages/eslint-plugin && yalc link @softarc/sheriff-core @softarc/eslint-plugin-sheriff",
"run:cli": "nx build core && chmod +x dist/packages/core/src/bin/main.js",
"test": "vitest",
"test:ci": "vitest -c vitest.config.ci.ts"
},
"author": {
"name": "Rainer Hahnekamp",
"email": "[email protected]"
},
"dependencies": {
"tslib": "^2.3.0"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@commitlint/prompt-cli": "^19.3.1",
"@nx/js": "20.0.7",
"@nx/workspace": "20.0.7",
"@types/eslint": "^8.4.6",
"@types/estree": "^1.0.0",
"@types/node": "18.19.14",
"@typescript-eslint/rule-tester": "^8.5.0",
"@vitest/coverage-v8": "^2.0.3",
"eslint": "^9.6.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-unused-imports": "^4.0.0",
"husky": "^9.0.11",
"nx": "20.0.7",
"prettier": "^3.2.5",
"ts-node": "10.9.1",
"typescript": "5.5.3",
"typescript-eslint": "^8.5.0",
"vitest": "^2.0.3"
}
}