-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
68 lines (68 loc) · 1.85 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
{
"name": "coders-tokyo-forum",
"version": "1.0.0",
"description": "",
"main": "admin.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "NODE_ENV=dev nodemon --inspect app.js",
"local": "NODE_ENV=local nodemon --inspect app.js",
"admin": "nodemon --inspect admin.js",
"start": "node app.js",
"lint": "eslint --fix ./src",
"lint:fix": "yarn lint -- --fix",
"lint:watch": "yarn lint -- --watch"
},
"_moduleAliases": {
"@": ".",
"@models": "src/api/models",
"@configVar": "src/config/vars",
"@utils": "src/utils",
"@bull": "src/services/bull",
"@middlewares": "src/middlewares",
"@controllers": "src/api/controllers",
"@redis": "src/config/redis",
"@services": "src/services",
"@views": "views",
"@socket": "src/services/socket",
"@validations": "src/api/validations"
},
"author": "",
"license": "ISC",
"dependencies": {
"@hapi/boom": "^7.4.2",
"bcrypt": "^3.0.6",
"bluebird": "^3.5.5",
"body-parser": "^1.19.0",
"bull": "^3.10.0",
"bull-arena": "^2.6.3",
"cloudinary": "^1.14.0",
"cookie-parser": "^1.4.4",
"cors": "^2.8.5",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "^2.20.2",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.7.5",
"multer": "^1.4.2",
"nodemailer": "^6.4.6",
"pug": "^2.0.4",
"socket.io": "^2.3.0",
"swagger-ui-express": "^4.0.7"
},
"devDependencies": {
"@hapi/joi": "^15.1.1",
"dompurify": "^2.0.11",
"dotenv": "^8.0.0",
"eslint": "^7.1.0",
"http-status": "^1.3.2",
"ioredis": "^4.16.1",
"joi": "^14.3.1",
"jsdom": "^16.2.2",
"module-alias": "^2.2.2",
"mongoose-deep-populate": "^3.1.1",
"multer-storage-cloudinary": "^2.2.1",
"nodemon": "^1.19.1",
"zlib": "^1.0.5"
}
}