-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.49 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
55
56
57
58
59
{
"name": "backend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "tsc",
"start": "nodemon dist/app.js",
"start:dev": "nodemon",
"start:prod": "node dist/app.js",
"test:e2e": "jest --config ./test/jest-e2e.json"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.17",
"@types/helmet": "^4.0.0",
"@types/jest": "^29.5.5",
"@types/jsonwebtoken": "^9.0.3",
"@types/lodash": "^4.14.198",
"@types/mongoose": "^5.11.97",
"@types/morgan": "^1.9.5",
"@types/multer": "^1.4.7",
"@types/node": "^20.6.0",
"@types/passport": "^1.0.12",
"@types/passport-jwt": "^3.0.9",
"@types/socket.io": "^3.0.2",
"@types/supertest": "^2.0.12",
"nodemon": "^3.0.1",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"dependencies": {
"bcrypt": "^5.1.1",
"canvas": "^2.11.2",
"concurrently": "^8.2.1",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-validator": "^7.0.1",
"face-api.js": "^0.22.2",
"helmet": "^7.0.0",
"image-size": "^1.0.2",
"jest": "^29.7.0",
"jsonwebtoken": "^9.0.2",
"lodash": "^4.17.21",
"mongoose": "^8.8.3",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"passport": "^0.6.0",
"passport-jwt": "^4.0.1",
"socket.io": "^4.7.2",
"supertest": "^6.3.3"
}
}