-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 794 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 794 Bytes
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
{
"name": "sprotty-website",
"version": "0.0.0",
"license": "EPL-2.0",
"private": true,
"devDependencies": {
"concurrently": "^7.6.0",
"cross-env": "^7.0.3",
"http-server": "^14.1.1",
"shx": "^0.3.4"
},
"scripts": {
"clean": "shx rm -rf public && npm run clean --workspaces",
"build": "npm run build --workspaces",
"watch": "concurrently -c gray,blue -n tailwind,hugo \"npm run watch --workspace tailwind\" \"npm run watch --workspace hugo\"",
"watch:gitpod": "concurrently -c gray,blue -k -n hugo \"npm run watch:gitpod --workspace hugo\" \"npm run watch --workspace tailwind\"",
"start:dev": "http-server ./static-dev",
"process-docs": "node scripts/process-docs.js"
},
"workspaces": [
"showcase",
"tailwind",
"hugo"
]
}