-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 960 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
34
35
36
37
{
"name": "nodejs-typescript-express",
"version": "1.0.0",
"description": "",
"main": "./src/app.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node ./dist/app.js",
"build": "tsc --project ./tsconfig.json",
"start:dev": "nodemon ./src/app.ts"
},
"author": "",
"license": "ISC",
"dependencies": {
"body-parser": "^1.20.2",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.1",
"express": "^4.19.2",
"kafkajs": "^2.2.4",
"mongodb": "^5.9.2",
"multer": "^1.4.5-lts.1",
"reflect-metadata": "^0.2.2",
"routing-controllers": "^0.10.4",
"typedi": "^0.10.0",
"typeorm": "^0.3.20",
"typescript": "^5.5.4"
},
"devDependencies": {
"@types/body-parser": "^1.19.5",
"@types/express": "^4.17.21",
"@types/multer": "^1.4.11",
"@types/node": "^22.5.0",
"nodemon": "^3.1.4",
"ts-node": "^10.9.2",
"tsx": "^4.17.0"
}
}