This repository has been archived by the owner on Mar 4, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
57 lines (57 loc) · 1.45 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
{
"name": "medusa-plugin-variant-images",
"version": "1.0.5",
"description": "Plugin for adding images and thumbnail to variants",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/andriinuts/medusa-plugin-variant-images"
},
"files": [
"dist"
],
"author": "Andrii Nutskovskyi <[email protected]>",
"license": "MIT",
"scripts": {
"prepare": "cross-env NODE_ENV=production yarn run build",
"test": "jest --passWithNoTests src",
"build": "tsc -p ./tsconfig.server.json && medusa-admin bundle",
"watch": "tsc --watch"
},
"devDependencies": {
"@medusajs/medusa": "^1.14.0",
"@medusajs/ui": "^1.0.0",
"@medusajs/icons": "^1.0.0",
"medusa-react": "^9.0.4",
"@medusajs/admin": "^7.0.0",
"@types/stripe": "^8.0.417",
"awilix": "^8.0.1",
"cross-env": "^5.2.1",
"jest": "^25.5.4",
"typescript": "^4.9.5"
},
"peerDependenciesMeta": {
"medusa-react": {
"optional": true
}
},
"peerDependencies": {
"@medusajs/medusa": "^1.14.0",
"@medusajs/ui": "^1.0.0",
"@medusajs/icons": "^1.0.0",
"medusa-react": "^9.0.4",
"@medusajs/admin": "^7.0.0"
},
"dependencies": {
"body-parser": "^1.19.0",
"express": "^4.17.1",
"medusa-core-utils": "^1.2.0",
"typeorm": "^0.3.17"
},
"keywords": [
"medusa-plugin",
"medusa-plugin-variant",
"medusa-plugin-images",
"medusa-plugin-variant-images"
]
}