-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 1.14 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
{
"name": "vegeto",
"version": "0.0.1",
"description": "11ty powered vegeto website",
"main": "index.js",
"scripts": {
"clean": "rm -rf ./dist/ && mkdir ./dist",
"build": "npm run clean && npx eleventy && npm run build-assets && mv ./dist/index.html ./dist/index.php",
"build-assets": "cp -a ./assets ./dist/",
"dev": "npm run clean && npx tinacms dev -c \"npx eleventy --serve\"",
"debug": "DEBUG=* npx eleventy",
"test-serve-prod": "rm -rf ./dist/admin && mv ./dist/index.html ./dist/index.php && php -S localhost:8081 --docroot ./dist",
"save": "USER_DATE=$(git config user.email)-$(date +%s) && git checkout -B f/new-content-$(echo $USER_DATE) && git add . && git commit -m new\\ content\\ $(echo $USER_DATE)",
"publish": "git push origin --all"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jfmou/vegeto.git"
},
"author": "jeff",
"license": "ISC",
"bugs": {
"url": "https://github.com/jfmou/vegeto/issues"
},
"homepage": "https://github.com/jfmou/vegeto#readme",
"dependencies": {
"@11ty/eleventy": "^2.0.1",
"@tinacms/cli": "^1.5.17",
"tinacms": "^1.5.8"
}
}