-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
60 lines (60 loc) · 1.89 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
{
"name": "men-challenge",
"version": "0.0.1",
"private": true,
"scripts": {
"clear": "rm -rf dist",
"babel-transpile": "babel . -d dist --ignore node_modules --copy-files --no-copy-ignored --include-dotfiles",
"install-dist-packages": "cd dist && rm -rf node_modules && npm install && cd ..",
"build": "npm run clear && npm run babel-transpile && npm run install-dist-packages",
"start": "node dist/app.js",
"dev": "nodemon --no-warnings --exec babel-node ./app.js",
"test": "env-cmd -f ./.env.test mocha --recursive --no-warnings --require @babel/register --exit"
},
"dependencies": {
"@babel/node": "^7.23.9",
"@babel/runtime": "^7.24.5",
"@babel/runtime-corejs3": "^7.24.5",
"babel-runtime": "^6.26.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"bson": "^4.7.2",
"cookie-parser": "~1.4.4",
"cors": "^2.8.5",
"debug": "~2.6.9",
"dotenv": "^8.6.0",
"express": "~4.18.2",
"express-jwt": "^6.1.2",
"express-oas-generator": "^1.0.46",
"express-validator": "^6.15.0",
"http-status-codes": "^2.3.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.12.8",
"mongoose-to-swagger": "^1.5.1",
"morgan": "~1.9.1",
"validator": "^13.0.0",
"winston": "^3.13.0"
},
"devDependencies": {
"@babel/cli": "^7.24.5",
"@babel/core": "^7.24.5",
"@babel/eslint-parser": "^7.24.5",
"@babel/plugin-transform-runtime": "^7.24.3",
"@babel/preset-env": "^7.24.5",
"@babel/register": "^7.23.7",
"chai": "^4.4.1",
"env-cmd": "^10.1.0",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^3.4.1",
"faker": "^5.5.3",
"mocha": "^10.4.0",
"nodemon": "^2.0.22",
"nyc": "^15.1.0",
"prettier": "^2.8.8",
"serverless": "^3.38.0",
"sinon": "^9.2.4"
}
}