-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 873 Bytes
/
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
{
"name": "product-catalog",
"version": "1.0.0",
"description": "Product catalog API with category management, item management, and more.",
"main": "src/server.ts",
"scripts": {
"start": "nodemon src/server.ts",
"build": "tsc",
"dev": "ts-node src/server.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Yasin",
"license": "MIT",
"dependencies": {
"body-parser": "^1.20.2",
"class-validator": "^0.14.1",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"joi": "^17.13.3",
"mysql2": "^3.10.3",
"reflect-metadata": "^0.2.2",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1",
"typeorm": "^0.3.20"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node": "^20.14.11",
"nodemon": "^3.1.4",
"ts-node": "^10.9.2",
"typescript": "^5.5.3"
}
}