-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.74 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
{
"name": "boilerplate-node-js",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "./node_modules/.bin/jest --config=config.jest.js && ./node_modules/mocha/bin/mocha ./test/endToEnd --timeout 4000 --exit",
"lint": "./node_modules/.bin/eslint . *.js",
"lint:fix": "./node_modules/.bin/eslint . *.js --fix",
"start": "node ./bin/server.js",
"start:dev": "./node_modules/.bin/nodemon ./bin/server.js",
"start:local": "./node_modules/pm2/bin/pm2 start ecosystem.config.js",
"check:security": "npm audit",
"check:modules": "./node_modules/retire/bin/retire",
"check": "npm run check:security && npm run lint",
"command:create_admin": "node ./app/commands/user/admin/createAdminCommand"
},
"keywords": [],
"author": "Vladyslav Umanskyi",
"license": "ISC",
"config": {
"ghooks": {
"pre-push": "npm run check && npm test",
"pre-commit": "npm run lint"
}
},
"engines": {
"node": "15.x"
},
"dependencies": {
"auth0": "^2.34.1",
"aws-sdk": "^2.884.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"dotenv": "^8.2.0",
"dotenv-safe": "^8.2.0",
"express": "^4.17.1",
"express-jwt": "^6.0.0",
"helmet": "^4.4.1",
"http-status": "^1.5.0",
"jest": "^26.6.3",
"joi": "^17.4.0",
"jsonwebtoken": "^8.5.1",
"jwks-rsa": "^1.12.3",
"lodash": "^4.17.21",
"moment": "^2.29.1",
"mongoose": "^5.12.3",
"multer": "^1.4.2",
"nodemailer": "^6.5.0",
"request": "^2.88.2",
"request-promise": "^4.2.6",
"winston": "^3.3.3"
},
"devDependencies": {
"chai": "^4.3.4",
"eslint": "^7.24.0",
"nodemon": "^2.0.7",
"supertest": "^6.1.3"
}
}