-
Notifications
You must be signed in to change notification settings - Fork 41
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.42 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.42 KB
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
80
81
82
83
84
85
86
87
88
89
{
"name": "ondcreferenceapppaymentservice",
"version": "1.0.0",
"description": "ONDC reference app payment service",
"main": "app.js",
"type": "module",
"dependencies": {
"@elastic/elasticsearch": "^8.13.1",
"@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",
"crypto": "^1.0.1",
"date-period": "^4.0.0",
"dompurify": "^3.1.4",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"express-mongo-sanitize": "^2.2.0",
"firebase-admin": "^10.0.2",
"helmet": "^7.1.0",
"ioredis": "^5.3.2",
"jsdom": "^24.0.0",
"libsodium-wrappers": "^0.7.10",
"lodash": "^4.17.21",
"moment": "^2.29.1",
"moment-timezone": "^0.5.45",
"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",
"razorpay": "^2.9.2",
"uuid": "^8.3.2",
"uuidv4": "^6.2.13",
"validator": "^13.12.0",
"winston": "^3.8.1"
},
"scripts": {
"debug": "NODE_ENV=development nodemon --exec babel-node src/app.js --trace-deprecation",
"start": "node src/app.js",
"lint:fix": "eslint src/*.js --fix",
"lint": "eslint src/*.js",
"test": "lint-staged",
"prepare": "husky install"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"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",
"husky": "^9.1.5",
"js-beautify": "^1.8.9",
"lint-staged": "^15.2.9",
"nodemon": "^1.18.9",
"npm-run-all": "^4.1.5"
},
"engines": {
"node": ">=16.0.0"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
}
}