-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
71 lines (71 loc) · 1.93 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
70
71
{
"name": "duobody-server",
"version": "1.0.0",
"description": "express, mongoDB REST api",
"main": "app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start:dev": "nodemon --exec babel-node src/app.js",
"build": "babel src --out-dir dist",
"start:prod": "npm run build && pm2 start ecosystem.config.js --env production"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Keep-Going-HyeonSoo/bulletproof-express-api.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Keep-Going-HyeonSoo/bulletproof-express-api/issues"
},
"homepage": "https://github.com/Keep-Going-HyeonSoo/bulletproof-express-api#readme",
"devDependencies": {
"@babel/cli": "^7.13.10",
"@babel/core": "^7.13.10",
"@babel/node": "^7.13.10",
"@babel/preset-env": "^7.13.10",
"cross-env": "^7.0.3",
"eslint": "^7.22.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.3.1",
"husky": "^5.2.0",
"lint-staged": "^10.5.4",
"nodemon": "^2.0.7",
"prettier": "2.2.1"
},
"dependencies": {
"aws-sdk": "^2.886.0",
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"file-stream-rotator": "^0.5.7",
"jsonwebtoken": "^8.5.1",
"mathjs": "^9.3.2",
"moment": "^2.29.1",
"mongoose": "^5.11.15",
"morgan": "^1.10.0",
"multer": "^1.4.2",
"multer-s3": "^2.9.0",
"nodemailer": "^6.5.0",
"nodemailer-sendgrid-transport": "^0.2.0",
"regenerator-runtime": "^0.13.7",
"uuid": "^8.3.2",
"winston": "^3.3.3",
"winston-daily-rotate-file": "^4.5.2"
},
"lint-staged": {
"*.js": [
"eslint . --fix",
"prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}