-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 989 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
38
39
40
41
{
"name": "hero-app",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"watch": "tsc -w",
"dev": "nodemon --inspect dist/index.js",
"build": "tsc",
"start": "node dist/index.js",
"test": "jest"
},
"dependencies": {
"@types/nodemailer": "^6.4.7",
"@types/uuid": "^8.3.4",
"bcrypt": "^5.1.0",
"date-fns": "^2.29.3",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-validator": "^6.14.2",
"jsonwebtoken": "^8.5.1",
"mongodb": "^4.11.0",
"nodemailer": "^6.8.0",
"uuid": "^9.0.0"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/express": "^4.17.14",
"@types/jest": "^29.2.5",
"@types/jsonwebtoken": "^8.5.9",
"@types/node": "^18.8.4",
"@types/supertest": "^2.0.12",
"jest": "^29.3.1",
"nodemon": "^2.0.20",
"prettier": "2.7.1",
"supertest": "^6.3.3",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
}
}