-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (32 loc) · 741 Bytes
/
package.json
File metadata and controls
33 lines (32 loc) · 741 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
{
"name": "assignment",
"version": "1.0.0",
"main": "dist/index.js",
"scripts": {
"start": "ts-node src/index.ts",
"build": "tsc",
"serve": "node dist/index.js",
"dev": "nodemon --watch src --exec ts-node src/index.ts",
"test": "jest"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"express": "^4.19.2",
"express-validator": "^7.1.0"
},
"devDependencies": {
"@types/express": "^4.17.11",
"@types/jest": "^29.5.12",
"@types/node": "^16.0.0",
"@types/supertest": "^6.0.2",
"jest": "^29.7.0",
"nodemon": "^3.1.3",
"supertest": "^7.0.0",
"ts-jest": "^29.1.5",
"ts-node": "^10.0.0",
"typescript": "^4.3.5"
}
}