-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
133 lines (133 loc) · 4.21 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
{
"name": "@nx/source",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"clean": "rimraf dist tmp *.log",
"preclean": "npm run clean:test && npm run clean:coverage",
"clean:cache": "rimraf .nx .angular",
"clean:test": "rimraf test*.db file:sqlite3orm*",
"clean:coverage": "rimraf coverage",
"clean:all": "npm run clean && npm run clean:cache",
"format": "npm run format:write",
"format:check": "dprint check",
"format:write": "dprint fmt",
"lint": "nx run-many --target=lint --parallel=4",
"lint:fix": "nx run-many --target=lint --parallel=4 --fix",
"test": "nx run-many --target=test --parallel=4 --verbose",
"pretest": "npm run clean:coverage",
"posttest": "npm run clean:test && npm run merge-coverage",
"build": "nx run-many --target=build --parallel=4",
"all": "npm run validate-projects && npm run format && npm run lint:fix && npm run build && npm run test",
"ci": "npm run validate-projects && npm run format:check && npm run lint && npm run build && npm run test",
"dprint": "npm run format:write",
"merge-coverage": "nx run build:merge-coverage",
"validate-projects": "nx run build:validate-projects",
"changelogs": "nx run-many --target=changelog --output-style=static",
"publish": "nx run-many --target=publish --nxBail --output-style=static",
"prepare": "husky"
},
"private": true,
"devDependencies": {
"@nestjs/testing": "^10.4.15",
"@nx/devkit": "20.3.0",
"@nx/esbuild": "20.3.0",
"@nx/eslint": "20.3.0",
"@nx/eslint-plugin": "20.3.0",
"@nx/jest": "20.3.0",
"@nx/js": "20.3.0",
"@nx/node": "20.3.0",
"@nx/rollup": "20.3.0",
"@nx/workspace": "20.3.0",
"@swc-node/register": "1.10.9",
"@swc/cli": "0.5.2",
"@swc/core": "1.10.1",
"@swc/jest": "0.2.37",
"@types/bcrypt": "^5.0.2",
"@types/chmodr": "^1.0.3",
"@types/chownr": "^1.0.3",
"@types/config": "^3.3.5",
"@types/debug": "^4.1.12",
"@types/express": "^5.0.0",
"@types/express-session": "^1.18.1",
"@types/jest": "29.5.14",
"@types/mv": "^2.1.4",
"@types/node": "22.10.2",
"@types/passport": "^1.0.17",
"@types/passport-local": "^1.0.38",
"@types/supertest": "^6.0.2",
"@types/supports-color": "^8.1.3",
"@types/touch": "^3.1.5",
"@types/which": "^3.0.4",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"@typescript-eslint/utils": "^7.18.0",
"dotenv": "^16.4.7",
"dprint": "^0.48.0",
"esbuild": "^0.24.2",
"eslint": "9.13.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"husky": "^9.1.7",
"jest": "29.7.0",
"jest-environment-node": "^29.7.0",
"lcov-total": "^1.0.7",
"npm-upgrade": "^3.1.0",
"nx": "20.3.0",
"parse-json": "^5.2.0",
"prettier": "^3.4.2",
"supertest": "^7.0.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "5.6.3",
"verdaccio": "^6.0.5"
},
"dependencies": {
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@nestjs/common": "^10.4.15",
"@nestjs/core": "^10.4.15",
"@nestjs/passport": "^10.0.3",
"@nestjs/platform-express": "^10.4.15",
"@nestjs/swagger": "^8.1.0",
"@swc/helpers": "0.5.15",
"bcrypt": "^5.1.1",
"chalk": "^4.1.2",
"chmodr": "^1.2.0",
"chownr": "^2.0.0",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.1",
"commander": "^12.1.0",
"config": "^3.3.12",
"debug": "^4.4.0",
"express": "^4.21.2",
"express-session": "^1.18.1",
"glob": "^11.0.0",
"helmet": "^8.0.0",
"mkdirp": "^3.0.1",
"mktemp": "^1.0.1",
"mv": "^2.1.1",
"nestjs-console": "^9.0.0",
"passport": "^0.7.0",
"passport-local": "^1.0.0",
"reflect-metadata": "^0.2.2",
"rxjs": "^7.4.0",
"sqlite3": "^5.1.7",
"stat-mode": "^1.0.0",
"supports-color": "^8.1.1",
"swagger-ui-express": "^5.0.1",
"touch": "^3.1.1",
"tslib": "^2.8.1",
"type-fest": "^4.30.2",
"which": "^5.0.0",
"winston": "^3.17.0"
},
"peerDependencies": {
"@nestjs/common": "^10.3.0",
"@nestjs/core": "^10.3.0",
"@nestjs/platform-express": "^10.3.0",
"rxjs": "^7.4.0"
},
"nx": {
"includedScripts": []
}
}