-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
31 lines (30 loc) · 968 Bytes
/
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": "shift",
"version": "1.0.0",
"type": "module",
"dependencies": {
"concurrently": "^8.2.2",
"hugo-installer": "^4.0.1",
"env-cmd": "^10.1.0",
"exec-bin": "^1.0.0"
},
"workspaces": [
"app",
"tools"
],
"scripts": {
"start": "npm -w app start",
"prestart": "npm i --omit dev --audit false --fund false --ignore-scripts",
"dev": "concurrently -k \"npm:dev-*\"",
"predev": "env-cmd -f tools/dev.env node tools/setupEventImages.js",
"dev-app": "env-cmd -f tools/dev.env npm start -w app",
"dev-hugo": "exec-bin bin/hugo/hugo -w -s site -e development -d ../bin/dist",
"build": "npm run build-hugo",
"build-hugo": "exec-bin bin/hugo/hugo -s site -d ../bin/dist",
"postinstall": "hugo-installer --version 0.128.2",
"test": "npm run test -w app",
"preview": "concurrently -k \"npm:dev-*\"",
"preview-hugo": "npm run dev-hugo",
"preview-app": " npm -w tools run preview"
}
}