-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.54 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
{
"name": "astro-starlight-hello",
"type": "module",
"version": "0.0.1",
"scripts": {
"unset:git-hooks-path": "git config --unset core.hooksPath",
"simple-git-hooks": "npx simple-git-hooks",
"postinstall": "is-ci || npm run simple-git-hooks",
"prettier": "prettier --write \"**/*.{js,jsx,ts,tsx,md,mdx,json,astro,svelte}\"",
"eslint": "eslint --fix \"src/**/*.{js,ts,jsx,tsx,astro,svelte}\"",
"lint": "run-s prettier eslint",
"start": "run-s dev",
"dev": "astro dev",
"build": "astro check && astro build",
"preview": "astro preview",
"build-n-preview": "run-s build preview",
"astro": "astro",
"sync": "astro sync",
"docker:build": "docker build --no-cache -t astro-starlight-hello .",
"docker:check": "docker run -it astro-starlight-hello sh",
"docker:rmi": "docker rmi -f astro-starlight-hello",
"docker:run": "docker run -p 8080:8080 astro-starlight-hello",
"docker:rund": "docker run --name web-preview -d -p 8080:8080 astro-starlight-hello",
"docker:stopd": "docker stop web-preview",
"docker:rm": "docker rm $(docker ps -aq --filter name=web-preview)",
"docker:stop": "run-s docker:stopd docker:rm",
"gh-pages-build": "cross-env GITHUB_PAGES=true npm run build",
"gh-pages-preview": "cross-env GITHUB_PAGES=true GITHUB_PAGES_PREVIEW=true run-s build preview"
},
"dependencies": {
"astro": "4.16.16",
"svelte": "5.2.10"
},
"devDependencies": {
"@astrojs/check": "0.9.4",
"@astrojs/starlight": "0.29.2",
"@astrojs/starlight-tailwind": "2.0.3",
"@astrojs/svelte": "6.0.2",
"@astrojs/tailwind": "5.1.2",
"@typescript-eslint/eslint-plugin": "8.16.0",
"@typescript-eslint/parser": "8.16.0",
"cross-env": "7.0.3",
"eslint": "9.15.0",
"eslint-plugin-astro": "1.3.1",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-svelte": "2.46.0",
"globals": "15.12.0",
"is-ci": "3.0.1",
"lint-staged": "15.2.10",
"npm-run-all2": "7.0.1",
"postcss": "8.4.49",
"prettier": "3.4.1",
"prettier-plugin-astro": "0.14.1",
"prettier-plugin-svelte": "3.3.2",
"prettier-plugin-tailwindcss": "0.6.9",
"sharp": "0.33.5",
"simple-git-hooks": "2.11.1",
"starlight-blog": "0.15.0",
"tailwindcss": "3.4.15",
"typescript": "5.7.2"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx,md,mdx,json,astro,svelte}": "prettier --write",
"src/**/*.{js,ts,jsx,tsx,astro,svelte}": "eslint --fix"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"github_pages": "https://erkobridee.github.io"
}