-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
61 lines (61 loc) · 1.71 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
{
"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": "[email protected]",
"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": "^1.9.0"
},
"devDependencies": {
"@prettier/plugin-php": "^0.22.0",
"eslint": "^9.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-unicorn": "^56.0.0",
"eslint-plugin-wc": "^2.1.0",
"lightningcss": "^1.22.1",
"lit": "^3.1.0",
"prettier": "^3.1.0",
"stylelint": "^16.1.0",
"stylelint-config-standard": "^36.0.0",
"stylelint-order": "^6.0.3",
"vite": "^6.0.0",
"vite-plugin-kirby": "^5.0.1",
"vite-plugin-mkcert": "^1.17.1"
}
}