-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.15 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
{
"name": "gosplan",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "pm2 start src/app.js --watch && pm2 logs all",
"lint": "eslint src"
},
"author": "",
"license": "ISC",
"husky": {
"hooks": {
"pre-push": "npm run lint"
}
},
"_moduleAliases": {
"@auth": "src/apps/auth",
"@regions": "src/apps/regions",
"@jetcalc": "src/apps/jetcalc",
"@config": "src/config",
"@db": "src/db",
"@middlewares": "src/middlewares",
"@utils": "src/utils"
},
"dependencies": {
"@hapi/joi": "^15.0.3",
"await-to-js": "^2.1.1",
"axios": "^0.19.0",
"cors": "^2.8.5",
"dotenv": "^8.0.0",
"errorhandler": "^1.5.0",
"express": "^4.16.4",
"generate-password": "^1.4.2",
"helmet": "^3.18.0",
"jsonwebtoken": "^8.5.1",
"module-alias": "^2.2.0",
"mongoose": "^5.5.11",
"passport": "^0.4.0",
"passport-http-bearer": "^1.0.1",
"pm2": "^3.5.1"
},
"devDependencies": {
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-node": "^9.0.1",
"husky": "^2.3.0"
}
}