forked from Blechlawine/medusa-plugin-filestorage-local
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.16 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
{
"name": "medusa-plugin-filestorage-strapi",
"version": "0.1.0",
"description": "integrate strapi media provider with medusajs",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/arro000/medusa-plugin-filestorage-strapi"
},
"scripts": {
"build": "babel src -d .",
"prepare": "cross-env NODE_ENV=production npm run build",
"watch": "babel -w src --out-dir . --ignore **/__tests__"
},
"publishConfig": {
"@arro000:registry": "https://npm.pkg.github.com"
},
"keywords": [
"medusa",
"local",
"filestorage",
"medusa-plugin"
],
"peerDependencies": {
"medusa-interfaces": "1.x"
},
"author": "arro000",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.16.0",
"@babel/core": "^7.16.0",
"@babel/preset-env": "^7.16.4",
"cross-env": "^7.0.3"
},
"dependencies": {
"cors": "^2.8.5",
"express": "^4.17.1",
"lodash": "^4.17.21",
"medusa-core-utils": "^1.1.34",
"medusa-interfaces": "^1.3.3",
"typeorm": "^0.3.10"
}
}