-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
36 lines (36 loc) · 1.3 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
{
"name": "contentful-migration-poc",
"version": "1.0.0",
"description": "A POC for contentful migration",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node index.js",
"import:contentful": "contentful space import --space-id $CONTENTFUL_SPACE_ID --mt $CONTENTFUL_MANAGEMENT_ACCESS_TOKEN --content-file ./data/contentful-seed.json",
"export:contentful": "contentful space export --space-id $CONTENTFUL_SPACE_ID --mt $CONTENTFUL_MANAGEMENT_ACCESS_TOKEN --content-file ./data/contentful-fetch.json",
"seed:contentful": "dotenv-run-script .env -- import:contentful",
"fetch:contentful": "dotenv-run-script .env -- export:contentful"
},
"repository": {
"type": "git",
"url": "git+https://github.com/imrans110/contentful-migration-poc.git"
},
"keywords": [
"contentful-migration"
],
"author": "Syed Imran Abidi",
"license": "ISC",
"bugs": {
"url": "https://github.com/imrans110/contentful-migration-poc/issues"
},
"homepage": "https://github.com/imrans110/contentful-migration-poc#readme",
"dependencies": {
"contentful-management": "^7.44.2",
"contentful-migration": "^4.5.8",
"dotenv": "^10.0.0",
"dotenv-run-script": "^0.1.0"
},
"devDependencies": {
"contentful-cli": "^1.9.26"
}
}