forked from SGFGOV/medusa-payment-razorpay
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 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
{
"name": "medusa-payment-razorpay",
"version": "3.0.1",
"description": "Razorpay Payment provider for Meduas Commerce",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/SGFGOV/medusa-payment-razorpay",
"directory": "medusa-payment-razorpay"
},
"author": "Govind Diwakar",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.17.10",
"@babel/core": "^7.17.10",
"@babel/node": "^7.17.10",
"@babel/plugin-proposal-class-properties": "^7.7.4",
"@babel/plugin-proposal-optional-chaining": "^7.16.7",
"@babel/plugin-transform-classes": "^7.16.7",
"@babel/plugin-transform-instanceof": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.17.10",
"@babel/preset-env": "^7.17.10",
"@babel/register": "^7.7.4",
"@babel/runtime": "^7.9.6",
"client-sessions": "^0.8.0",
"cross-env": "^5.2.1",
"eslint": "^8.8.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-file-progress": "^1.3.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^25.5.4",
"medusa-test-utils": "^1.1.37",
"typeorm": "^0.3.10",
"@typescript-eslint/eslint-plugin": "^5.41.0",
"@typescript-eslint/parser": "^5.41.0",
"typescript": "^4.5.5",
"prettier": "^2.7.1"
},
"scripts": {
"build": "babel src -d . --ignore **/__tests__",
"prepare": "cross-env NODE_ENV=production npm run build",
"watch": "babel -w src --out-dir . --ignore **/__tests__",
"lint": "eslint --fix ./src/",
"test": "jest"
},
"peerDependencies": {
"medusa-interfaces": "1.x"
},
"dependencies": {
"@babel/plugin-syntax-class-static-block": "^7.14.5",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-syntax-export-namespace-from": "^7.8.3",
"body-parser": "^1.19.0",
"express": "^4.17.1",
"medusa-core-utils": "^1.1.31",
"medusa-interfaces": "^1.3.3",
"mongoose": "^6.3.2",
"p-try": "^3.0.0",
"razorpay": "^2.8.1"
},
"jest": {
"testEnvironment": "node",
"testTimeout": 60000,
"verbose": true
},
"keywords": [
"medusa",
"razorpay",
"payment gateway",
"nodejs",
"medusajs"
]
}