-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.17 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "kamepay-api",
"version": "1.0.0",
"description": "Kamepay API",
"engines": {
"node": ">=14.20.0"
},
"main": "src/app.js",
"type": "module",
"private": true,
"scripts": {
"start": "node --experimental-specifier-resolution=node --trace-deprecation src/app",
"dev": "nodemon --experimental-specifier-resolution=node src/app",
"inspect": "nodemon --inspect src/app.js",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"test:init": "jest --init",
"lint": "eslint",
"lint:eslint": "eslint --ignore-path .gitignore --ext .js",
"lint:js": "npm run lint:eslint src/",
"lint:fix": "npm run lint:js -- --fix",
"postinstall": "husky install"
},
"repository": {
"type": "git"
},
"keywords": [],
"author": "Gbalam Prince",
"license": "ISC",
"dependencies": {
"agenda": "^4.3.0",
"agendash": "^3.1.0",
"bcrypt": "^5.0.1",
"body-parser": "^1.20.0",
"celebrate": "^15.0.1",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"errorhandler": "^1.5.1",
"event-dispatch": "^0.4.1",
"eventemitter3": "^4.0.7",
"express": "^4.18.1",
"express-basic-auth": "^1.2.1",
"express-jwt": "^7.7.5",
"form-data": "^4.0.0",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.21",
"mailgun.js": "^8.0.0",
"method-override": "^3.0.0",
"moment": "^2.29.4",
"moment-timezone": "^0.5.35",
"mongoose": "^6.5.3",
"morgan": "^1.10.0",
"redis": "^4.3.0",
"reflect-metadata": "^0.1.13",
"typedi": "^0.10.0",
"winston": "^3.8.1"
},
"devDependencies": {
"@jest/globals": "^29.0.3",
"eslint": "^7.32.0 || ^8.2.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-node": "^4.1.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.1",
"jest": "^29.0.3",
"nodemon": "^2.0.19",
"pinst": "^3.0.0",
"prettier": "^2.7.1",
"supertest": "^6.2.4"
},
"imports": {
"#src/*": "./src/*",
"#utils/*": "./src/utils/*"
}
}