forked from ONDC-Official/biap-client-node-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.87 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
{
"name": "ondcreferenceapppaymentservice",
"version": "1.0.0",
"description": "ONDC reference app payment service",
"main": "app.js",
"type": "module",
"dependencies": {
"@google-cloud/secret-manager": "^3.11.0",
"aws-sdk": "^2.1300.0",
"axios": "^0.26.1",
"body-parser": "^1.19.2",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"date-period": "^4.0.0",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"express-mongo-sanitize": "^2.2.0",
"firebase-admin": "^10.0.2",
"libsodium-wrappers": "^0.7.10",
"lodash": "^4.17.21",
"moment": "^2.29.1",
"mongoose": "^6.2.9",
"morgan": "^1.10.0",
"node-fetch": "^3.2.3",
"node-rsa": "^1.1.1",
"passport": "^0.5.2",
"passport-jwt": "^4.0.0",
"uuid": "^8.3.2",
"winston": "^3.8.1"
},
"scripts": {
"debug": "NODE_ENV=development nodemon --exec babel-node src/app.js --trace-deprecation",
"start": "node src/app.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MoonshotsProductStudio/ONDCReferenceAppPaymentService.git"
},
"author": "Moonshots Product Studio",
"license": "ISC",
"bugs": {
"url": "https://github.com/MoonshotsProductStudio/ONDCReferenceAppPaymentService/issues"
},
"homepage": "https://github.com/MoonshotsProductStudio/ONDCReferenceAppPaymentService#readme",
"devDependencies": {
"@babel/cli": "^7.17.6",
"@babel/core": "^7.17.7",
"@babel/node": "^7.16.8",
"@babel/plugin-transform-modules-commonjs": "^7.17.7",
"@babel/preset-env": "^7.16.11",
"cross-conf-env": "^1.2.1",
"eslint": "^7.32.0 || ^8.2.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.2",
"js-beautify": "^1.8.9",
"nodemon": "^1.18.9",
"npm-run-all": "^4.1.5"
},
"engines": {
"node": ">=16.0.0"
},
"lint-staged": {
"*.js": "eslint --cache --fix"
}
}