-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 1.11 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
{
"name": "ExpressJs_Testing",
"version": "1.0.0",
"main": "src/index.ts",
"scripts": {
"start": "ts-node --esm src/index.ts",
"dev": "nodemon --config nodemon.json src/index.ts",
"test": "jest --detectOpenHandles --watchAll --verbose --coverage --runInBand"
},
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.21.8",
"@babel/preset-env": "^7.21.5",
"@types/express": "^4.17.17",
"@types/jest": "^29.5.1",
"@types/mongoose": "^5.11.97",
"@types/supertest": "^2.0.12",
"babel-jest": "^29.5.0",
"nodemon": "^2.0.22",
"open": "^9.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
},
"dependencies": {
"@types/bcrypt": "^5.0.0",
"@types/jsonwebtoken": "^9.0.2",
"@types/node": "^20.2.3",
"bcrypt": "^5.1.0",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"jest": "^29.5.0",
"joi": "^17.9.2",
"jsonwebtoken": "^9.0.0",
"mongoose": "^7.2.0",
"supertest": "^6.3.3",
"ts-jest": "^29.1.0"
}
}