-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.78 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.78 KB
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
{
"private": true,
"name": "bradshawsguide",
"version": "3.0.0-beta",
"description": "Bradshaw's Guide for Tourists in Great Britain & Ireland",
"keywords": [
"railways",
"reference",
"travel"
],
"homepage": "https://bradshaws.guide",
"author": {
"name": "Paul Robert Lloyd",
"email": "noreply@paulrobertlloyd.com",
"url": "https://paulrobertlloyd.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/bradshawsguide/website/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/bradshawsguide/website.git"
},
"engines": {
"node": ">=22.0.0",
"npm": ">=10.0.0"
},
"type": "module",
"scripts": {
"build": "vite build",
"dev": "vite",
"lint:format": "prettier . --check",
"lint:format:fix": "prettier . --write",
"lint:css": "stylelint 'public/assets/**/*.css'",
"lint:css:fix": "stylelint 'public/assets/**/*.css' --fix",
"lint:js": "eslint 'public/assets/**/*.js'",
"lint:js:fix": "eslint 'public/assets/**/*.js' --fix",
"lint": "npm run lint:format && npm run lint:css && npm run lint:js",
"lint:fix": "npm run lint:format:fix && npm run lint:css:fix && npm run lint:js:fix"
},
"dependencies": {
"leaflet": "^2.0.0-alpha.1"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@prettier/plugin-php": "^0.25.0",
"eslint": "^10.2.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-unicorn": "^64.0.0",
"eslint-plugin-wc": "^3.1.0",
"globals": "^17.4.0",
"lightningcss": "^1.32.0",
"lit": "^3.3.2",
"prettier": "^3.8.1",
"stylelint": "^17.6.0",
"stylelint-config-standard": "^40.0.0",
"stylelint-order": "^8.1.1",
"vite": "^8.0.3",
"vite-plugin-kirby": "^5.7.1",
"vite-plugin-mkcert": "^1.17.1"
}
}