-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.13 KB
/
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
42
43
{
"name": "first-express-app",
"version": "1.0.0",
"main": "src/index.ts",
"license": "MIT",
"scripts": {
"watch": "tsc -w",
"dev": "nodemon --inspect dist/index.js",
"test-e2e": "jest --detectOpenHandles --no-cache --watchAll --config ./jest.config.js"
},
"dependencies": {
"@types/jest": "^29.5.5",
"@types/nodemailer": "^6.4.13",
"@types/supertest": "^2.0.12",
"bcrypt": "^5.1.1",
"cookie-parser": "^1.4.6",
"date-fns": "^2.30.0",
"express": "^4.18.2",
"express-validator": "^7.0.1",
"inversify": "^6.0.2",
"jest": "^29.7.0",
"jsonwebtoken": "^9.0.2",
"mongodb": "^6.1.0",
"mongoose": "^8.0.1",
"nodemailer": "^6.9.7",
"reflect-metadata": "^0.2.1",
"supertest": "^6.3.3",
"ts-jest": "^29.1.1",
"uuidv4": "^6.2.13"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/cookie-parser": "^1.4.6",
"@types/express": "^4.17.17",
"@types/jsonwebtoken": "^9.0.4",
"@types/node": "^20.6.0",
"body-parser": "^1.20.2",
"dotenv": "^16.3.1",
"nodemon": "^3.0.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
}
}