-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
63 lines (63 loc) · 1.74 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
{
"name": "nestjs-demo",
"version": "1.0.0",
"description": "A demo project for NestJS",
"repository": "git@github.com:miZyind/nestjs-demo.git",
"author": "miZyind <mizyind.dev>",
"license": "MIT",
"scripts": {
"prepare": "husky",
"clean": "rm -rf dist",
"dev": "nest start --path tsconfig.json --watch",
"lint": "eslint src --max-warnings 0",
"build": "nest build --path tsconfig.json",
"start": "node dist/main.js",
"typeorm": "typeorm-ts-node-commonjs -d src/db.ts",
"typeorm:generate": "typeorm-ts-node-commonjs migration:generate -d src/db.ts"
},
"engines": {
"node": ">=20",
"yarn": "1.22.22"
},
"packageManager": "yarn@1.22.22",
"dependencies": {
"@nestjs/common": "^10.4.11",
"@nestjs/core": "^10.4.11",
"@nestjs/jwt": "^10.2.0",
"@nestjs/microservices": "^10.4.11",
"@nestjs/platform-express": "^10.4.11",
"@nestjs/schedule": "^4.1.1",
"@nestjs/typeorm": "^10.0.2",
"amqp-connection-manager": "^4.1.14",
"amqplib": "^0.10.5",
"bcrypt": "^5.1.1",
"mysql2": "^3.11.4",
"nestjs-xion": "^7.1.2",
"passport-jwt": "^4.0.1",
"reflect-metadata": "^0.2.2",
"rxjs": "^7.8.1",
"typeorm": "^0.3.20"
},
"devDependencies": {
"@commitlint/cli": "^19.6.0",
"@commitlint/config-conventional": "^19.6.0",
"@nestjs/cli": "^10.4.8",
"@types/amqplib": "^0.10.5",
"@types/bcrypt": "^5.0.2",
"@types/node": "^22.10.0",
"@types/passport-jwt": "^4.0.1",
"eslint-plugin-mizyind": "^6.0.10",
"husky": "^9.1.7",
"ts-node": "^10.9.2",
"typescript": "^5.7.2"
},
"prettier": {
"singleQuote": true,
"trailingComma": "all"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}