generated from brckd/astro-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.08 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
67
68
69
70
71
72
73
{
"name": "@bricked/pages",
"private": true,
"description": "My very own site on the interwebz.",
"homepage": "https://bricked.dev/",
"bugs": {
"url": "https://github.com/brckd/pages/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/brckd/pages.git"
},
"license": "MIT",
"author": "bricked",
"type": "module",
"scripts": {
"astro": "astro",
"build": "astro build",
"dev": "astro dev",
"format": "$npm_execpath run format:package; $npm_execpath run format:prettier && $npm_execpath run format:eslint",
"format:eslint": "eslint --fix src/",
"format:package": "sort-package-json",
"format:prettier": "prettier --write .",
"prepare": "husky",
"preview": "astro preview",
"start": "astro dev"
},
"commitlint": {
"extends": "@commitlint/config-conventional"
},
"lint-staged": {
"!(*.((m|c)?(t|j)sx?|astro)|package.json)": "npx prettier --ignore-unknown --write",
"*.((m|c)?(t|j)sx?|astro)": [
"npx prettier --write",
"npx eslint --fix"
],
"package.json": [
"npx sort-package-json",
"npx prettier --write"
]
},
"dependencies": {
"@astrojs/rss": "^4.0.9",
"@astrojs/vercel": "^8.0.0-beta.3",
"@fontsource-variable/hanken-grotesk": "^5.1.0",
"@lucia-auth/adapter-drizzle": "^1.1.0",
"@neondatabase/serverless": "^0.10.1",
"@node-rs/argon2": "^2.0.0",
"astro": "^5.0.0-beta.3",
"lucia": "^3.2.2",
"marked": "^14.1.3",
"sanitize-html": "^2.13.1"
},
"devDependencies": {
"@commitlint/config-conventional": "^19.5.0",
"@eslint/js": "^9.14.0",
"@types/eslint__js": "^8.42.3",
"@typescript-eslint/parser": "^8.13.0",
"commitlint": "^19.5.0",
"dotenv": "^16.4.5",
"drizzle-kit": "^0.27.1",
"eslint": "^9.14.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-astro": "^1.3.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"prettier-plugin-astro": "^0.14.1",
"sort-package-json": "^2.10.1",
"typescript": "^5.6.3",
"typescript-eslint": "^8.13.0"
}
}