-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.68 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
{
"name": "@seedcompany/libs-monorepo",
"private": true,
"license": "MIT",
"scripts": {
"build": "nx run-many --target=build",
"lint": "nx run-many --target=lint --fix",
"lint:check": "nx run-many --target=lint",
"test": "nx run-many --target=test",
"typecheck": "nx run-many --target=typecheck",
"gen-nx-json": "node --loader ts-node/esm/transpile-only tools/gen-nx-json.mts",
"postinstall": "husky install && yarn gen-nx-json"
},
"devDependencies": {
"@commitlint/cli": "^17.4.4",
"@commitlint/config-conventional": "^17.4.4",
"@commitlint/prompt-cli": "^17.4.4",
"@jscutlery/semver": "^2.30.1",
"@nrwl/devkit": "^15.8.7",
"@nrwl/linter": "^15.8.7",
"@nrwl/nest": "^15.8.7",
"@swc/core": "^1.3.42",
"@types/node": "^18.15.5",
"eslint": "^8.36.0",
"globby": "^13.1.3",
"husky": "^8.0.3",
"lint-staged": "^13.2.0",
"ngx-deploy-npm": "^5.2.0",
"nx": "^15.8.7",
"prettier": "^2.8.6",
"ts-node": "^10.9.1",
"tslib": "^2.5.0",
"tsup": "^7.1.0",
"typescript": "5.0.4",
"unplugin-swc": "^1.5.1",
"vitest": "^2.1.5",
"yaml": "^2.2.1"
},
"resolutions": {
"@commitlint/load/typescript": "npm:typescript@^5",
"@nrwl/node/@nrwl/jest": "npm:typescript@*",
"@nrwl/node/@nrwl/webpack": "npm:typescript@*"
},
"dependenciesMeta": {
"@nestjs/core": {
"built": false
},
"core-js-pure": {
"built": false
}
},
"engines": {
"node": ">=20"
},
"workspaces": [
"packages/*",
"tools/*"
],
"repository": {
"type": "git",
"url": "ssh://[email protected]/SeedCompany/libs.git",
"directory": "."
},
"packageManager": "[email protected]"
}