-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
47 lines (47 loc) · 1.26 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
{
"name": "@minskylab/medusa-payment-mercadopago",
"version": "0.0.6",
"description": "Mercadopago Payment Provider for Medusa Commerce",
"author": "Minsky Community <[email protected]>",
"license": "MIT",
"scripts": {
"build": "babel src -d dist --extensions \".ts,.js\"",
"watch": "babel -w src --out-dir . --ignore **/__tests__ --extensions \".ts,.js\"",
"prepare": "cross-env NODE_ENV=production yarn run build"
},
"peerDependencies": {
"@medusajs/medusa": "^1.6.0",
"medusa-interfaces": "^1.3.3",
"typeorm": "^0.2.36"
},
"devDependencies": {
"@babel/cli": "^7.18.10",
"@babel/core": "^7.18.10",
"@babel/preset-typescript": "^7.14.5",
"babel-preset-medusa-package": "^1.1.19",
"cross-env": "^7.0.3"
},
"repository": "https://github.com/minskylab/medusa-payment-mercadopago.git",
"keywords": [
"medusa",
"medusa-plugin",
"medusa-plugin-payment",
"mercadopago"
],
"dependencies": {
"body-parser": "^1.20.1",
"express": "^4.18.2",
"medusa-core-utils": "^1.1.34",
"mercadopago": "^1.5.14",
"@medusajs/medusa": "^1.6.0",
"typeorm": "^0.2.36",
"medusa-interfaces": "^1.3.3"
},
"files": [
"api",
"dist",
"services",
"env.example",
"tsconfig.json"
]
}