-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
33 lines (33 loc) · 1.19 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
{
"name": "kontent-proto",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"cms:prepare": "node cms-scripts/buildArticles.js",
"cms:webhook": "node cms-scripts/webhook.js",
"local:serve": "hugo server -b http://localhost:1313",
"local:start": "npm-run-all -p cms:prepare cms:webhook local:serve",
"local:serve-themed": "hugo server -t hugo_theme_pickles -b http://localhost:1313",
"local:prepare-themed": "npm-run-all theme:add theme:rename",
"local:start-themed": "npm-run-all -p local:serve-themed cms:webhook",
"theme:add": "cd themes && git submodule add https://github.com/kentico-michaelb/hugo_theme_pickles",
"theme:rename": "node cms-scripts/renameLayout.js",
"theme:serve": "hugo -b $DEPLOY_PRIME_URL -t hugo_theme_pickles",
"netlify:build": "npm-run-all cms:prepare theme:*"
},
"author": "",
"license": "ISC",
"dependencies": {
"@kentico/kontent-delivery": "^10.0.0",
"body-parser": "^1.19.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"rxjs": "^6.6.3",
"turndown": "^6.0.0"
},
"devDependencies": {
"npm-run-all": "^4.1.5"
}
}