-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 916 Bytes
/
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
{
"name": "api.amanatadvisory",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"start": "nodemon --exec babel-node src/app.js --env=local"
},
"dependencies": {
"bcrypt": "^5.0.1",
"body-parser": "^1.20.0",
"colors": "^1.4.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-validator": "^6.14.2",
"jsonwebtoken": "^8.5.1",
"minimist": "^1.2.6",
"module-alias": "^2.2.2",
"moment": "^2.29.4",
"mongodb": "^3.6.6",
"mongoose": "^6.4.4",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"path": "^0.12.7",
"uuid": "^8.3.2"
},
"devDependencies": {
"@babel/cli": "^7.18.6",
"@babel/core": "^7.18.6",
"@babel/node": "^7.18.6",
"@babel/preset-env": "^7.18.6",
"nodemon": "^2.0.19"
},
"_moduleAliases": {
"@root": ".",
"@actions": "src/actions",
"@models": "src/utils"
}
}