-
Notifications
You must be signed in to change notification settings - Fork 35
/
package.json
33 lines (33 loc) · 1.1 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
32
33
{
"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",
"check:links": "ts-node scripts/check-links.ts"
},
"devDependencies": {
"@types/chalk": "^2.2.0",
"chalk": "^4.0.0",
"concurrently": "~8.2.1",
"cross-env": "~7.0.3",
"front-matter": "^4.0.2",
"glob": "^10.4.1",
"shx": "~0.3.4",
"ts-node": "^10.9.2"
},
"workspaces": [
"core",
"hugo",
"tailwind"
],
"volta": {
"node": "18.18.1",
"npm": "9.9.0"
}
}