forked from hestiaAI/website.template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.87 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "@hestia/website-hl",
"version": "0.1.0",
"description": "HestiaLabs website",
"license": "UNLICENSED",
"author": "Charles Foucault-Dumas",
"contributors": [
"Paul-Olivier Dehaye",
"Charles Foucault-Dumas",
"Marie-Pierre Vidonne",
"Andréas Kündig",
"Olivier Lange"
],
"publishConfig": {
"access": "restricted"
},
"scripts": {
"postinstall": "npm dedupe",
"clean": "rimraf build",
"prebuild": "npm run clean",
"predev": "npm run clean",
"build": "run-s build:eleventy build:snowpack",
"build:snowpack": "snowpack build",
"build:eleventy": "eleventy",
"dev": "run-p dev:eleventy dev:snowpack",
"dev:snowpack": "snowpack dev",
"dev:eleventy": "eleventy --watch --quiet",
"start": "npm run dev",
"start:netlify:cms-proxy": "netlify-cms-proxy-server",
"test": "echo \"Error: no test specified\" && exit 1",
"tools:setup-post-fork": "node tools/setup-post-fork.js",
"tools:fork-template": "node tools/fork-template.js",
"tools:migrate:post-ids": "node tools/migrate-post-ids.js"
},
"dependencies": {
"lit-element": "^2.4.0",
"lit-translate": "^1.2.1"
},
"devDependencies": {
"@11ty/eleventy": "^0.12.1",
"@octokit/plugin-retry": "^3.0.8",
"liquidjs": "^9.25.0",
"luxon": "^1.26.0",
"markdown-it-plain-text": "^0.2.1",
"netlify-cms-proxy-server": "^1.3.12",
"npm-run-all": "^4.1.5",
"octokit": "^1.0.6",
"prompts": "^2.4.1",
"replace-in-file": "^6.2.0",
"rimraf": "^3.0.2",
"snowpack": "^3.5.2",
"winston": "^3.3.3"
},
"engines": {
"node": ">=14",
"npm": ">=7"
},
"homepage": "https://github.com/hestia-owner-hl/website.hl",
"bugs": {
"url": "https://github.com/hestia-owner-hl/website.hl/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hestia-owner-hl/website.hl.git"
}
}