24 lines
630 B
JSON
24 lines
630 B
JSON
|
|
{
|
||
|
|
"scripts": {
|
||
|
|
"dev": "concurrently \"npm run dev:front\" \"npm run dev:panel\"",
|
||
|
|
"dev:front": "npx -y kirbyup src/front/index.js --out-dir assets/ --watch",
|
||
|
|
"dev:panel": "npx -y kirbyup src/panel/index.js --watch",
|
||
|
|
"build": "npm run build:front && npm run build:panel",
|
||
|
|
"build:front": "npx -y kirbyup src/front/index.js --out-dir assets/",
|
||
|
|
"build:panel": "npx -y kirbyup src/panel/index.js"
|
||
|
|
},
|
||
|
|
"dependencies": {
|
||
|
|
"dayjs": "^1.11.10"
|
||
|
|
},
|
||
|
|
"devDependencies": {
|
||
|
|
"concurrently": "^8.2.2"
|
||
|
|
},
|
||
|
|
"archive": {
|
||
|
|
"exclude": [
|
||
|
|
".git",
|
||
|
|
".gitignore",
|
||
|
|
".gitattributes"
|
||
|
|
]
|
||
|
|
}
|
||
|
|
}
|