forked from SharmaPawan11/medusa-plugin-strapi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (55 loc) · 1.57 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
{
"name": "medusa-plugin-strapi",
"version": "1.0.7-dev",
"description": "Strapi plugin for Medusa Commerce",
"main": "index.js",
"keywords": [
"medusa",
"medusa-strapi",
"medusa-plugin"
],
"repository": {
"type": "git",
"url": "https://github.com/Deathwish98/medusa-plugin-strapi"
},
"author": "Pawan Sharma",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.7.5",
"@babel/core": "^7.7.5",
"@babel/eslint-parser": "^7.16.0",
"@babel/node": "^7.7.4",
"@babel/plugin-proposal-class-properties": "^7.7.4",
"@babel/plugin-transform-instanceof": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.7.6",
"@babel/preset-env": "^7.7.5",
"@babel/register": "^7.7.4",
"@babel/runtime": "^7.9.6",
"@typescript-eslint/eslint-plugin": "^5.2.0",
"babel-eslint": "^10.1.0",
"client-sessions": "^0.8.0",
"cross-env": "^5.2.1",
"eslint": "^8.0.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^25.5.2",
"prettier": "^2.4.1"
},
"scripts": {
"build": "babel src -d .",
"prepare": "cross-env NODE_ENV=production npm run build",
"watch": "babel -w src --out-dir . --ignore **/__tests__",
"test": "jest",
"lint": "eslint --ext .js,.jsx,.ts,.tsx ."
},
"dependencies": {
"@babel/plugin-transform-classes": "^7.9.5",
"axios": "^0.21.1",
"body-parser": "^1.19.0",
"express": "^4.17.1",
"medusa-core-utils": "^1.1.26",
"medusa-test-utils": "^1.1.23",
"redis": "^3.0.2"
}
}