-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.32 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
{
"name": "@krieselreihe/website",
"version": "1.0.0",
"description": "The super awesome website for Krieselreihe Games.",
"private": true,
"type": "module",
"scripts": {
"start": "eleventy --serve",
"build": "eleventy && prettier --write _site",
"lint": "eslint . && stylelint 'src/**/*.css'",
"format": "prettier --write .",
"format:check": "prettier --list-different .",
"ci": "pnpm lint && pnpm format:check"
},
"repository": {
"type": "git",
"url": "git+https://github.com/krieselreihe/website.git"
},
"keywords": [
"website",
"games",
"krieselreihe",
"selenium"
],
"author": "Krieselreihe Games <[email protected]> (https://krieselreihe.com)",
"contributors": [
"Martin Helmut Fieber <[email protected]> (https://martin-fieber.de)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/krieselreihe/website/issues"
},
"homepage": "https://krieselreihe.com",
"devDependencies": {
"@11ty/eleventy": "^3.0.0-alpha.10",
"@11ty/eleventy-plugin-rss": "^1.2.0",
"@eslint/js": "^9.1.1",
"eslint": "^9.1.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-html": "^8.1.1",
"globals": "^15.1.0",
"luxon": "^3.4.4",
"prettier": "^3.2.5",
"stylelint": "^16.5.0",
"stylelint-prettier": "^5.0.0"
}
}