-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.25 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": "hux-assessment-backend",
"version": "1.0.0",
"description": "",
"main": "dist/src/index.js",
"type": "module",
"scripts": {
"start": "node dist/src/index.js",
"dev": "concurrently \"npx tsc --watch\" \"nodemon -q dist/index.js\"",
"test": "jest"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@types/jest": "^29.5.6",
"@types/supertest": "^2.0.15",
"bcrypt": "^5.1.1",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-validator": "^7.0.1",
"helmet": "^7.0.0",
"jest": "^29.7.0",
"jsonwebtoken": "^9.0.2",
"morgan": "^1.10.0",
"nodemailer": "^6.9.7",
"nodemon": "^3.0.1",
"pg-promise": "^11.5.4",
"supertest": "^6.3.3",
"ts-jest": "^29.1.1"
},
"devDependencies": {
"@types/bcrypt": "^5.0.1",
"@types/cookie-parser": "^1.4.5",
"@types/cors": "^2.8.15",
"@types/express": "^4.17.20",
"@types/helmet": "^4.0.0",
"@types/jsonwebtoken": "^9.0.4",
"@types/morgan": "^1.9.7",
"@types/nodemailer": "^6.4.13",
"@types/pg": "^8.10.7",
"@types/pg-promise": "^5.4.3",
"concurrently": "^8.2.2",
"ts-node-dev": "^2.0.0",
"typescript": "^5.2.2"
}
}