-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.81 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
{
"name": "astro-ts-tw-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,astro}\"",
"eslint": "eslint --fix \"src/**/*.{js,ts,jsx,tsx,astro}\"",
"lint": "run-s prettier eslint",
"dev": "astro dev",
"start": "astro dev",
"build": "astro check && astro build",
"preview": "astro preview",
"astro": "astro",
"gh-pages-build": "cross-env GITHUB_PAGES=true npm run build",
"gh-pages-preview": "cross-env GITHUB_PAGES=true GITHUB_PAGES_PREVIEW=true npm run preview"
},
"dependencies": {
"canvas-confetti": "1.9.3"
},
"devDependencies": {
"@astrojs/check": "0.9.4",
"@astrojs/mdx": "3.1.9",
"@astrojs/tailwind": "5.1.2",
"@types/canvas-confetti": "1.6.4",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"astro": "4.16.12",
"autoprefixer": "10.4.20",
"clsx": "2.1.1",
"cross-env": "7.0.3",
"eslint": "8.57.1",
"eslint-plugin-astro": "1.3.1",
"eslint-plugin-jsx-a11y": "6.10.2",
"is-ci": "3.0.1",
"lint-staged": "15.2.10",
"npm-run-all2": "7.0.1",
"postcss": "8.4.49",
"prettier": "3.3.3",
"prettier-plugin-astro": "0.14.1",
"prettier-plugin-tailwindcss": "0.6.8",
"simple-git-hooks": "2.11.1",
"tailwind-merge": "2.5.4",
"tailwindcss": "3.4.14",
"typescript": "5.6.3"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx,md,mdx,astro}": "prettier --write",
"src/**/*.{js,ts,jsx,tsx,astro}": "eslint --fix"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"github_pages": "https://erkobridee.github.io"
}