-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.47 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
{
"license": "MIT",
"scripts": {
"nx": "nx",
"build": "nx run-many -t build",
"test": "nx run-many -t test",
"lint": "npm run nx -- run-many --t lint",
"lint:fix": "nx run-many --t lint --fix && nx format:write --all ",
"tsc:lint": "tsc --noEmit -p tsconfig.base.json",
"prepare": "husky install"
},
"devDependencies": {
"@commitlint/cli": "^19.0.3",
"@commitlint/config-conventional": "^19.0.3",
"@eslint/eslintrc": "^3.0.2",
"@nestjs/schematics": "^10.1.1",
"@nx/devkit": "20.0.1",
"@nx/eslint": "20.0.1",
"@nx/eslint-plugin": "20.0.1",
"@nx/jest": "20.0.1",
"@nx/js": "20.0.1",
"@nx/nest": "20.0.1",
"@nx/node": "20.0.1",
"@nx/plugin": "20.0.1",
"@nx/webpack": "20.0.1",
"@nx/workspace": "20.0.1",
"@types/jest": "29.5.13",
"@types/node": "20.11.23",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"eslint": "8.57.1",
"eslint-plugin-simple-import-sort": "^10.0.0",
"husky": "^9.0.11",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"jest-environment-node": "^29.7.0",
"jsonc-eslint-parser": "^2.4.0",
"lint-staged": "^15.2.2",
"nx": "20.0.1",
"prettier": "^3.2.5",
"testcontainers": "^10.7.1",
"ts-jest": "29.1.2",
"ts-node": "10.9.2",
"typescript": "5.5.4",
"verdaccio": "^5.29.2"
},
"workspaces": [
"packages/*"
],
"lint-staged": {
"*.{js,ts}": "npm run lint:fix"
}
}