-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
44 lines (44 loc) · 1.43 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
{
"name": "medusa-starter-contentful",
"version": "0.0.1",
"description": "A starter for Medusa projects.",
"author": "Sebastian Rindom <[email protected]>",
"license": "MIT",
"scripts": {
"migrate:contentful": "./contentful-migrations/index.js",
"import:contentful": "contentful space import --space-id $CONTENTFUL_SPACE_ID --mt $CONTENTFUL_ACCESS_TOKEN --content-file ./data/contentful-seed.json",
"seed:contentful": "dotenv-run-script .env -- import:contentful",
"seed": "medusa seed -f ./data/seed.json",
"build": "babel src -d dist --extensions \".ts,.js\"",
"start": "medusa develop"
},
"dependencies": {
"@medusajs/medusa": "^1.1.37",
"@medusajs/medusa-cli": "^1.1.16",
"dotenv-run-script": "^0.1.0",
"medusa-fulfillment-manual": "^1.1.20",
"medusa-interfaces": "^1.1.21",
"medusa-payment-manual": "^1.0.2",
"medusa-payment-stripe": "^1.1.23",
"medusa-plugin-contentful": "^1.1.25",
"mongoose": "^5.13.3",
"typeorm": "^0.2.36"
},
"repository": "https://github.com/medusajs/medusa-starter-contentful.git",
"keywords": [
"contentful",
"sqlite",
"ecommerce",
"headless",
"medusa"
],
"devDependencies": {
"@babel/cli": "^7.14.3",
"@babel/core": "^7.14.3",
"@babel/preset-typescript": "^7.14.5",
"babel-preset-medusa-package": "^1.1.13",
"contentful-cli": "^1.8.23",
"contentful-migration": "^4.2.5",
"dotenv": "^10.0.0"
}
}