-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.86 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
60
61
62
63
64
65
66
67
68
69
{
"name": "server-dial",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "npx tsc",
"start": "node dist/index.js",
"dev": "concurrently \"npx tsc --watch\" \"nodemon -q dist/index.js\"",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"compilerOptions": {
"outDir": "./dist"
},
"dependencies": {
"body-parser": "^1.20.0",
"compression": "^1.7.4",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"eslint-config-airbnb-base": "^15.0.0",
"express": "^4.18.1",
"express-flash": "^0.0.2",
"express-session": "^1.17.3",
"helmet": "^5.1.0",
"hpp": "^0.2.3",
"http-proxy-middleware": "^2.0.6",
"http-status": "^1.5.2",
"joi": "^17.6.0",
"lusca": "^1.7.0",
"morgan": "^1.10.0",
"passport": "^0.6.0",
"redis": "^4.1.0",
"request-ip": "^2.2.0",
"simple-peer": "^9.11.1",
"socket.io": "^4.5.1",
"swagger-jsdoc": "^6.2.1",
"swagger-ui-express": "^4.4.0",
"winston": "^3.8.0",
"winston-daily-rotate-file": "^4.7.1"
},
"devDependencies": {
"@types/compression": "^1.7.2",
"@types/cookie-parser": "^1.4.3",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/express-flash": "^0.0.2",
"@types/express-session": "^1.17.4",
"@types/hpp": "^0.2.2",
"@types/lusca": "^1.7.1",
"@types/morgan": "^1.9.3",
"@types/node": "^18.0.0",
"@types/passport": "^1.0.9",
"@types/swagger-jsdoc": "^6.0.1",
"@types/swagger-ui-express": "^4.1.3",
"concurrently": "^7.2.2",
"eslint": "^8.18.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"jest": "^28.1.1",
"nodemon": "^2.0.18",
"prettier": "^2.7.1",
"supertest": "^6.2.3",
"typescript": "^4.7.4"
}
}