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": "getchoos-website",
"type": "module",
"version": "0.0.1",
"private": true,
"repository": "https://github.com/getchoo/website.git",
"author": "getchoo",
"license": "MIT",
"scripts": {
"dev": "astro dev",
"build": "astro build",
"check": "astro check",
"preview": "astro preview",
"astro": "astro",
"lint": "tsc && eslint .",
"format": "prettier --write ."
},
"devDependencies": {
"@astrojs/check": "^0.5.10",
"@astrojs/mdx": "^2.2.2",
"@astrojs/sitemap": "^3.1.2",
"@astrojs/tailwind": "^5.1.0",
"@catppuccin/tailwindcss": "^0.1.6",
"@fontsource-variable/noto-sans": "^5.0.4",
"@fontsource/noto-sans-mono": "^5.0.19",
"@types/node": "^20.12.2",
"@typescript-eslint/parser": "^7.4.0",
"astro": "^4.5.12",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-mdx": "^3.1.5",
"execa": "^8.0.1",
"fsevents": "^2.3.3",
"prettier": "^3.2.5",
"prettier-eslint": "^16.3.0",
"sharp": "^0.33.3",
"tailwindcss": "^3.4.3",
"typescript": "^5.4.3",
"typescript-eslint": "^7.4.0"
},
"packageManager": "[email protected]+sha256.fc4a49bd609550a41e14d20efbce802a4b892aa4cac877322de2f0924f122991",
"eslintConfig": {
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"prettier"
],
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint"
],
"root": true,
"ignorePatterns": [
"dist/**"
]
}
}
|