-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 869 Bytes
/
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
{
"name": "medusa-plugin-blog",
"version": "0.1.1",
"description": "Basic blog backend for Medusa",
"repository": {
"type": "git",
"url": "https://github.com/pevey/medusa-plugin-blog"
},
"homepage": "https://pevey.com/medusa-plugin-blog",
"author": "Lacey Pevey",
"license": "MIT",
"keywords": [
"medusa-plugin",
"blog",
"ecommerce",
"headless",
"medusa"
],
"devDependencies": {
"@medusajs/admin-ui": "^2.1.2",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"express": "^4.18.2",
"typeorm": "^0.3.17",
"typescript": "^5.2.2"
},
"scripts": {
"prepare": "cross-env NODE_ENV=production yarn run build",
"test": "jest --passWithNoTests src",
"build": "tsc",
"watch": "tsc --watch"
},
"dependencies": {
"zod": "^3.22.2"
}
}