-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 827 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": "testingnode",
"version": "1.0.0",
"description": "testing node application ",
"main": "server.ts",
"scripts": {
"start_app": "tsc && node dist/src/index.js",
"start": "nodemon --exec npm run start_app",
"local": "nodemon index.ts",
"build": "tsc",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"testing"
],
"author": "mohit raj panday",
"license": "ISC",
"dependencies": {
"@types/node": "^22.7.0",
"body-parser": "^1.20.3",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.1",
"dotenv": "^16.4.5",
"express": "^4.21.0",
"nodemon": "^3.1.7",
"reflect-metadata": "^0.2.2",
"typescript": "^5.6.2"
},
"devDependencies": {
"@types/express": "^5.0.0",
"@types/reflect-metadata": "^0.1.0"
}
}