-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.72 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.72 KB
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
{
"name": "together42",
"version": "1.0.0",
"description": "서먹서먹한 사람들이 친해지기 위해 밥 한 끼 먹게 해주는 랜덤매칭 웹 서비스",
"main": "src/app.js",
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "sudo node src/app.js",
"swagger": "bash src/swagger/swagger.sh",
"prod": "nodemon src/app.js",
"dev": "yarn swagger && nodemon src/app.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Together42/Together.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Together42/Together/issues"
},
"homepage": "https://github.com/Together42/Together#readme",
"dependencies": {
"@slack/web-api": "^6.7.2",
"aws-sdk": "^2.1144.0",
"bcrypt": "^5.0.1",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.0.0",
"ejs": "^3.1.6",
"express": "^4.17.3",
"express-async-errors": "^3.1.1",
"express-basic-auth": "^1.2.1",
"express-rate-limit": "^6.4.0",
"express-session": "^1.17.2",
"express-validator": "^6.14.0",
"fs": "^0.0.1-security",
"jsonwebtoken": "^9.0.0",
"morgan": "^1.10.0",
"multer": "^1.4.4",
"multer-s3": "^2.10.0",
"mysql2": "^2.3.3",
"node-cron": "^3.0.2",
"nodemailer": "^6.7.5",
"nodemon": "^2.0.15",
"request": "^2.88.2",
"swagger-autogen": "^2.22.0",
"urlencode": "^1.1.0",
"winston": "^3.7.2",
"winston-daily-rotate-file": "^4.6.1"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.30.6",
"@typescript-eslint/parser": "^5.30.6",
"eslint": "^8.20.0",
"swagger-jsdoc": "^6.2.1",
"swagger-ui-express": "^4.4.0"
}
}