-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.3 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
{
"name": "dax-payment-handler",
"version": "1.0.0",
"description": "Payment handler using flutterwave",
"main": "index.js",
"scripts": {
"build": "rm -rf ./src/dist && babel ./src/. --out-dir ./src/dist --copy-files",
"start": "npm run build && node ./src/dist/index.js",
"dev": "export NODE_ENV=development && nodemon --exec babel-node src/index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/drayzii/dax-payment-handler.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/drayzii/dax-payment-handler/issues"
},
"homepage": "https://github.com/drayzii/dax-payment-handler#readme",
"dependencies": {
"@babel/polyfill": "^7.6.0",
"@hapi/joi": "^17.1.0",
"axios": "^0.19.2",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"md5": "^2.2.1",
"node-forge": "^0.9.1",
"nodemon": "^1.19.3"
},
"devDependencies": {
"@babel/cli": "^7.6.4",
"@babel/core": "^7.6.4",
"@babel/node": "^7.6.3",
"@babel/preset-env": "^7.6.3",
"@babel/register": "^7.6.2",
"eslint": "^6.5.1",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.18.2"
}
}