forked from eclipse-langium/langium-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
27 lines (27 loc) · 941 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
{
"name": "langium-website-project",
"description": "Source code for langium.org",
"author": "TypeFox",
"license": "MIT",
"private": true,
"scripts": {
"watch": "npm run build --workspace core && concurrently -c gray,blue -k -n hugo,tailwind \"npm run watch --workspace hugo\" \"npm run watch --workspace tailwind\"",
"watch:gitpod": "npm run build --workspace core && concurrently -c gray,blue -k -n hugo,tailwind \"npm run watch:gitpod --workspace hugo\" \"npm run watch --workspace tailwind\"",
"build": "npm run clean && npm run build --workspace core --workspace=tailwind --workspace=hugo",
"clean": "shx rm -rf public && npm run clean --workspace core --workspace=tailwind"
},
"devDependencies": {
"concurrently": "~8.2.1",
"cross-env": "~7.0.3",
"shx": "~0.3.4"
},
"workspaces": [
"core",
"hugo",
"tailwind"
],
"volta": {
"node": "18.18.1",
"npm": "9.9.0"
}
}