-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1.36 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
34
35
36
37
38
39
40
41
42
43
44
{
"name": "uwa-nlp-tlp",
"version": "1.0.0",
"description": "The UWA NLP-TLP website.",
"scripts": {
"dev": "nodemon --ignore ./_site/",
"build": "npm-run-all --serial build:sass build:eleventy",
"build-ghpages": "npm-run-all --serial build:sass build:eleventy",
"start": "npm-run-all --parallel watch:sass start:eleventy",
"debug": "DEBUG=Eleventy* npx @11ty/eleventy",
"debugstart": "DEBUG=Eleventy* npx @11ty/eleventy --serve --quiet",
"benchmark": "DEBUG=Eleventy:Benchmark* npx @11ty/eleventy",
"start:eleventy": "npx @11ty/eleventy --serve --quiet",
"build:eleventy": "npx @11ty/eleventy",
"watch:sass": "npx sass _sass/:public/css/ --watch",
"build:sass": "npx sass _sass/:public/css/"
},
"repository": {
"type": "git",
"url": "git://github.com/nlp-tlp/nlp-tlp.github.io.git"
},
"author": {
"name": "Michael Stewart",
"email": "[email protected]"
},
"license": "MIT",
"engines": {
"node": ">=14"
},
"homepage": "https://nlp-tlp.org",
"devDependencies": {
"@11ty/eleventy": "^2.0.1",
"@11ty/eleventy-img": "^3.1.1",
"@11ty/eleventy-navigation": "^0.3.5",
"@11ty/eleventy-plugin-bundle": "^1.0.4",
"@11ty/eleventy-plugin-rss": "^1.2.0",
"@11ty/eleventy-plugin-syntaxhighlight": "^5.0.0",
"luxon": "^3.3.0",
"markdown-it-anchor": "^8.6.7",
"nodemon": "^3.1.4",
"npm-run-all": "^4.1.5",
"sass": "^1.76.0"
}
}