-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.99 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
{
"name": "@fancade-club/account",
"license": "MIT",
"author": "Fancade Club",
"type": "module",
"scripts": {
"astro": "astro",
"build": "astro check && 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": "format-package -w ./**/package.json",
"format:prettier": "prettier --write .",
"prepare": "husky",
"preview": "astro preview",
"start": "astro dev"
},
"lint-staged": {
"!(*.(c|m)?(t|j)s|*.astro|package.json)": "npx prettier --ignore-unknown --write",
"package.json": "format-package -w",
"(*.(c|m)?(t|j)s|*.astro)": [
"prettier --write",
"eslint --fix"
]
},
"commitlint": {
"extends": "@commitlint/config-conventional"
},
"overrides": {
"format-package": {
"prettier": ">=3.3.3"
}
},
"dependencies": {
"@astrojs/check": "^0.9.3",
"@astrojs/netlify": "^6.0.0-beta.0",
"@fancade-club/comps": "^1.5.0",
"@fontsource-variable/baloo-2": "^5.1.0",
"@lucia-auth/adapter-drizzle": "^1.1.0",
"@neondatabase/serverless": "^0.10.1",
"@node-rs/argon2": "^2.0.0",
"@sindresorhus/slugify": "^2.2.1",
"@types/zxcvbn": "^4.4.5",
"arctic": "^1.9.2",
"astro": "^5.0.0-beta.4",
"drizzle-orm": "^0.34.0",
"lucia": "^3.2.1",
"zod-validation-error": "^3.4.0",
"zxcvbn": "^4.4.2"
},
"devDependencies": {
"@commitlint/config-conventional": "^19.5.0",
"@eslint/js": "^9.10.0",
"@types/eslint__js": "^8.42.3",
"commitlint": "^19.5.0",
"dotenv": "^16.4.5",
"drizzle-kit": "^0.25.0",
"eslint": "^9.10.0",
"eslint-config-prettier": "^9.1.0",
"format-package": "^7.0.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.2",
"typescript-eslint": "^8.6.0"
}
}