-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.38 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
50
51
52
53
54
{
"name": "backend",
"version": "0.0.0",
"type": "commonjs",
"private": true,
"scripts": {
"build": "npx tsc",
"dev": "concurrently \"npx tsc --watch\" \"nodemon -q bin/www.js\"",
"start": "node bin/www.js",
"test": "jest --coverage"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/cors": "^2.8.13",
"@types/debug": "^4.1.7",
"@types/express": "^4.17.17",
"@types/http-errors": "^2.0.1",
"@types/jest": "^29.4.0",
"@types/jsonwebtoken": "^9.0.1",
"@types/morgan": "^1.9.4",
"@types/multer": "^1.4.7",
"@types/multer-s3": "^3.0.0",
"@types/pg": "^8.6.6",
"@types/supertest": "^2.0.12",
"@types/swagger-ui-express": "^4.1.3",
"@types/uuid": "^9.0.1",
"@types/yamljs": "^0.2.3",
"concurrently": "^7.6.0",
"jest": "^29.4.3",
"nodemon": "^2.0.20",
"supertest": "^6.3.3",
"ts-jest": "^29.0.5"
},
"dependencies": {
"aws-sdk": "^2.1323.0",
"bcrypt": "^5.1.0",
"cors": "^2.8.5",
"debug": "4.3.2",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-rate-limit": "^6.7.0",
"http-errors": "^2.0.0",
"joi": "^17.7.1",
"jsonwebtoken": "^9.0.0",
"moment": "^2.29.4",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"multer-s3": "^3.0.1",
"pg": "^8.9.0",
"swagger-ui-express": "^4.6.1",
"typescript": "^4.5.2",
"uuid": "^9.0.0"
}
}