-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.42 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.42 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
{
"name": "react-bank-api",
"version": "2.0.88",
"private": false,
"description": "react app new",
"publishConfig": {
"registry": "https://soleng.jfrog.io/artifactory/api/npm/alpha-npm-virtual/"
},
"scripts": {
"start": "node -r dotenv/config ./api/app.js",
"start-dev": "nodemon -r dotenv/config ./api/app.js",
"debug": "nodemon --inspect ./api/app.js",
"push": "npm version patch && git push",
"push-minor": "npm version minor && git push",
"push-major": "npm version major && git push"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"chalk": "^2.4.2",
"compression": "^1.7.4",
"cors": "^2.8.5",
"date-fns": "^2.6.0",
"debug": "^4.1.1",
"express": "^4.17.1",
"express-validator": "^6.2.0",
"faker": "^4.1.0",
"helmet": "^3.21.2",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.15",
"markedjs": "^0.0.1-security",
"module-alias": "^2.2.2",
"mongodb": "^3.3.3",
"mongoose": "^5.7.7",
"nodemailer": "^6.3.1",
"nodemailer-mailgun-transport": "^1.4.0",
"url-slug": "^2.2.0",
"validator": "^13.7.0"
},
"_moduleAliases": {
"@config": "config",
"@controllers": "controllers",
"@middleware": "middleware",
"@models": "models",
"@routes": "routes",
"@util": "util",
"@validations": "validations"
}
}