-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.83 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 1.83 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
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "@boulder-js/website",
"version": "1.0.0",
"description": "BoulderJS Website",
"bugs": {
"url": "https://github.com/boulder-js/website/issues"
},
"license": "MIT",
"author": "Patrick Heneise <patrick@zentered.co> (https://zentered.co)",
"contributors": [
"Patrick Heneise (https://github.com/PatrickHeneise)"
],
"type": "module",
"scripts": {
"pw": "playwright install",
"build": "astro build",
"dev": "astro dev",
"preview": "astro preview",
"lint": "eslint --fix . --ext .js --ext .ts --ext .tsx --ext md",
"pretty": "prettier -l --write \"src/**/*.{js,ts,tsx,md,mdx,css,scss}\"",
"start": "astro dev",
"test": "true"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.{ts,js,tsx,jsx,json,md,yaml}": [
"prettier --write"
],
"*.{ts,js,tsx,jsx}": [
"eslint --cache --fix",
"npm run test related"
],
"*.{ts,tsx}": [
"tsc-files --noEmit"
]
},
"eslintIgnore": [
"/node_modules",
"/build",
"/public/build"
],
"release": {
"branches": [
"main"
]
},
"dependencies": {
"@astrojs/cloudflare": "^12.6.11",
"@astrojs/solid-js": "^5.1.3",
"@zentered/issue-forms-body-parser": "^2.2.0",
"astro": "^5.16.0",
"gitevents-fetch": "^1.4.0",
"solid-js": "^1.9.10"
},
"devDependencies": {
"@commitlint/config-conventional": "^20.0.0",
"@playwright/test": "^1.56.1",
"@solidjs/testing-library": "^0.8.10",
"@tailwindcss/typography": "^0.5.19",
"@tailwindcss/vite": "^4.1.17",
"autoprefixer": "^10.4.22",
"clsx": "^2.1.1",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"prettier": "^3.6.2",
"tailwindcss": "^4.1.17",
"vite-plugin-graphql-loader": "^4.0.4"
},
"engines": {
"node": ">=20"
}
}