This repository was archived by the owner on Mar 24, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2k
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.83 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.83 KB
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
{
"name": "nest",
"version": "0.0.1",
"description": "NestJS App",
"author": "",
"license": "MIT",
"scripts": {
"prebuild": "rimraf dist",
"build": "tsc -p tsconfig.build.json",
"format": "prettier --write \"src/**/*.ts\"",
"start": "node dist/main.js",
"start:dev": "ts-node -r tsconfig-paths/register src/main.ts",
"start:debug": "node --inspect -r ts-node/register -r tsconfig-paths/register src/main.ts",
"start:prod": "node dist/main.js",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix"
},
"dependencies": {
"@fastify/formbody": "^8.0.2",
"@fastify/view": "^11.1.1",
"@nestjs/cache-manager": "^3.0.1",
"@nestjs/common": "^11.1.6",
"@nestjs/core": "^11.1.6",
"@nestjs/platform-express": "^11.1.6",
"@nestjs/platform-fastify": "^11.1.6",
"@nestjs/typeorm": "^11.0.0",
"cache-manager": "^7.2.5",
"fastify": "^5.6.1",
"handlebars": "^4.7.8",
"hbs": "^4.2.0",
"mongodb": "^6.17.0",
"mysql2": "^3.15.0",
"pg": "^8.16.3",
"reflect-metadata": "^0.2.2",
"rimraf": "^6.0.1",
"rxjs": "^7.8.2",
"typeorm": "^0.3.28"
},
"devDependencies": {
"@eslint/js": "^9.35.0",
"@nestjs/cli": "^11.0.10",
"@nestjs/schematics": "^11.0.6",
"@types/express": "^5.0.5",
"@types/express-serve-static-core": "^5.1.0",
"@types/node": "^22.18.6",
"@typescript-eslint/eslint-plugin": "^8.44.1",
"@typescript-eslint/parser": "^8.44.1",
"eslint": "^9.35.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"globals": "^16.4.0",
"nodemon": "^3.1.10",
"prettier": "^3.6.2",
"ts-loader": "^9.5.4",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.9.2"
},
"overrides": {
"debug": "^4.4.1",
"glob": "^13.0.0",
"string-width": "^4.2.3"
}
}