-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.32 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
{
"name": "website",
"type": "module",
"private": false,
"version": "0.0.0",
"license": "Apache-2.0",
"author": [
{
"name": "Sebastian Jn",
"email": "[email protected]",
"github": "sebastianjnuwu"
}
],
"contributors": [
{
"name": "Sebastian Jn",
"email": "[email protected]",
"github": "sebastianjnuwu"
}
],
"scripts": {
"test": "echo \"Test: yes that was a test!\" && exit 1",
"astro": "astro",
"dev": "astro dev",
"build": "astro build",
"preview": "astro preview",
"lint": "npx @biomejs/biome lint --write",
"format": "npx @biomejs/biome format --write",
"prepare": "husky",
"pre-commit": "cz"
},
"hooks": {
"prepare-commit-msg": "npx --no -- commitlint --edit $1; exec < /dev/tty && npx cz --hook || true"
},
"dependencies": {
"astro": "^5.1.8",
"bootstrap": "^5.3.3",
"phosphor-astro": "^2.1.0"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"cz-conventional-changelog": "^3.3.0",
"husky": "^9.1.7",
"typescript": "^5.7.3"
},
"repository": {
"type": "git",
"url": "https://github.com/gatofreela/gatofreela.github.io.git"
},
"engines": {
"npm": ">=9",
"node": ">=20"
}
}