-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1020 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 1020 Bytes
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
{
"name": "ecommerce-apis",
"version": "0.0.1",
"description": "",
"author": "",
"private": true,
"license": "MIT",
"scripts": {
"build": "nest build",
"start": "nest start",
"start:dev": "nest start --watch",
"start:debug": "nest start --debug --watch",
"start:prod": "node dist/main",
"generate:openapi": "ts-node src/generate-openapi.ts"
},
"dependencies": {
"@nestjs/common": "^11.1.6",
"@nestjs/config": "^4.0.2",
"@nestjs/core": "^11.1.6",
"@nestjs/platform-express": "^11.1.6",
"@nestjs/swagger": "^11.2.0",
"@nestjs/typeorm": "^11.0.0",
"bcryptjs": "^2.4.3",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.0",
"js-yaml": "^4.1.0",
"sqlite3": "^5.1.7",
"swagger-ui-express": "^5.0.1",
"typeorm": "^0.3.17",
"uuid": "^11.1.0"
},
"devDependencies": {
"@nestjs/cli": "^11.0.10",
"@types/js-yaml": "^4.0.9",
"@types/node": "^24.5.2",
"ts-node": "^10.9.2",
"typescript": "^5.9.2"
}
}