-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.54 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": "@oak-digital/medusa-plugin-builder",
"version": "0.0.5",
"description": "",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"release": "bumpp",
"dev": "rimraf dist && run-p dev:*",
"dev:admin": "tsc -w --project tsconfig.admin.json",
"dev:server": "tsc -w --project tsconfig.json",
"build": "rimraf dist && tsc && tsc --project tsconfig.admin.json"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@medusajs/admin-shared": "preview",
"@medusajs/medusa": "preview",
"@medusajs/modules-sdk": "preview",
"@medusajs/types": "preview",
"@medusajs/ui": "preview",
"@medusajs/utils": "preview",
"@medusajs/workflows-sdk": "preview",
"@types/react": "^18.3.4",
"@types/react-dom": "^18.3.0",
"axios": "^1.7.4",
"bumpp": "^9.5.2",
"npm-run-all": "^4.1.5",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.26.1",
"rimraf": "^6.0.1",
"typescript": "^5.5.4",
"zod": "^3.23.8"
},
"peerDependencies": {
"@medusajs/admin-shared": "0.0.2-preview-20240826120715",
"@medusajs/medusa": "^preview",
"@medusajs/modules-sdk": "^preview",
"@medusajs/types": "^preview",
"@medusajs/ui": "3.0.1-preview-20240826120715",
"@medusajs/utils": "^preview",
"@medusajs/workflows-sdk": "^preview",
"axios": "^0.x || ^1.0.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"zod": "^3.x"
},
"dependencies": {
"@zodios/core": "^10.9.6"
}
}