-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
36 lines (36 loc) · 833 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
{
"name": "express-ts",
"version": "0.0.1",
"description": "",
"main": "index.js",
"scripts": {
"dev": "nodemon src/index.ts",
"build": "tsc --project ./",
"test": "jest --watch"
},
"keywords": [],
"author": "Victor Ribero",
"license": "MIT",
"dependencies": {
"@types/mongoose": "^5.7.36",
"@types/uuid": "^8.3.0",
"@types/uuid-validate": "0.0.1",
"body-parser": "^1.19.0",
"dayjs": "^1.9.1",
"express": "4.17.1",
"http-status": "^1.4.2",
"mongoose": "^5.10.9",
"uuid": "^8.3.1",
"uuid-validate": "0.0.3"
},
"devDependencies": {
"@types/express": "^4.17.8",
"@types/jest": "^26.0.15",
"@types/node": "^14.11.2",
"jest": "^26.6.1",
"nodemon": "^2.0.4",
"ts-jest": "^26.4.1",
"ts-node": "^9.0.0",
"typescript": "^4.0.3"
}
}