forked from fsyntax/medusa-plugin-printful
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.74 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
{
"name": "medusa-plugin-printful",
"version": "1.5.6",
"packageManager": "yarn@1.22.19",
"description": "A Medusa plugin that enables Printful as a fulfillment provider and provides product and order synchronization.",
"author": "Marco Freiberger <marco@freibergersyntax.dev>",
"repository": {
"type": "git",
"url": "https://github.com/fsyntax/medusa-plugin-printful.git"
},
"scripts": {
"build": "rimraf dist && tsc",
"prepare": "cross-env NODE_ENV=production yarn run build",
"watch": "tsc --watch",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"dependencies": {
"@babel/eslint-parser": "^7.21.8",
"@medusajs/admin": "^6.0.0",
"@types/lodash": "^4.14.191",
"body-parser": "^1.20.2",
"bullmq": "^3.15.6",
"cors": "^2.8.5",
"cross-fetch": "^3.1.5",
"exponential-backoff": "^3.1.1",
"express": "^4.18.2",
"medusa-core-utils": "^1.1.39",
"medusa-interfaces": "^1.3.7",
"redis-url-parse": "^2.0.0",
"typeorm": "^0.3.16",
"colorette": "^2.0.19"
},
"devDependencies": {
"@babel/cli": "^7.18.10",
"@babel/core": "^7.21.8",
"@babel/preset-typescript": "^7.14.5",
"@medusajs/medusa": "^1.12.0",
"@types/node": "^20.4.8",
"babel-eslint": "^10.1.0",
"babel-preset-medusa-package": "^1.1.19",
"cross-env": "^7.0.3",
"eslint": "^8.37.0",
"lodash": "^4.17.21",
"rimraf": "^5.0.1",
"typescript": "^5.0.4"
},
"peerDependencies": {
"@medusajs/medusa": "^1.12.0"
},
"simple-git-hooks": {
"pre-commit": "yarn lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
},
"keywords": [
"medusa",
"medusa-plugin",
"medusa-plugin-shipping",
"medusa-plugin-fulfillment",
"medusa-plugin-other"
]
}