-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.37 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
44
45
46
47
48
49
{
"name": "sprint2_hw4",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/toshkaexe/sprint2_hw4.git",
"author": "Anton <[email protected]>",
"license": "MIT",
"dependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/body-parser": "^1.19.5",
"@types/date-fns": "^2.6.0",
"@types/dotenv": "^8.2.0",
"@types/jest": "^29.5.12",
"@types/jsonwebtoken": "^9.0.5",
"@types/mongodb": "^4.0.7",
"@types/nodemailer": "^6.4.14",
"@types/supertest": "^6.0.2",
"@types/uuid": "^9.0.8",
"bcrypt": "^5.1.1",
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.2",
"cookie-parser": "^1.4.6",
"express": "^4.18.2",
"express-session": "^1.18.0",
"express-validator": "^7.0.1",
"jest": "^29.7.0",
"jsonwebtoken": "^9.0.2",
"mongodb-memory-server": "^9.3.0",
"mongoose": "^8.3.3",
"morgan-body": "^2.6.9",
"nodemailer": "^6.9.9",
"supertest": "^6.3.4",
"ts-jest": "^29.1.2"
},
"scripts": {
"dev": "yarn nodemon --inspect dist/index.js",
"watch": "tsc -w",
"jest": "jest --detectOpenHandles --config ./__test__/jest.config.js"
},
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/cookie-parser": "^1.4.6",
"@types/express": "^4.17.21",
"@types/node": "^20.11.17",
"nodemon": "^3.1.0",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
}
}