summaryrefslogtreecommitdiff
path: root/package.json
blob: bd6a9e24b000274721caad92316dc25eb4bc33c5 (plain)
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
{
	"name": "getchoo-website",
	"type": "module",
	"version": "0.0.1",
	"scripts": {
		"dev": "astro dev",
		"start": "astro dev",
		"build": "astro build",
		"preview": "astro preview",
		"astro": "astro",
		"format": "prettier --write --editorconfig ."
	},
	"devDependencies": {
		"@astrojs/image": "^0.16.9",
		"@astrojs/sitemap": "^1.3.1",
		"@astrojs/tailwind": "^3.1.2",
		"@astrojs/ts-plugin": "^1.0.6",
		"@catppuccin/tailwindcss": "^0.1.1",
		"astro": "^2.4.5",
		"autoprefixer": "^10.4.14",
		"eslint": "^8.40.0",
		"eslint-config-prettier": "^8.8.0",
		"eslint-plugin-prettier": "^4.2.1",
		"execa": "^7.1.1",
		"postcss": "^8.4.31",
		"prettier": "^2.8.8",
		"prettier-plugin-astro": "^0.8.1",
		"sass": "^1.62.1",
		"sharp": "^0.32.1",
		"tailwindcss": "^3.3.2"
	},
	"eslintConfig": {
		"extends": [
			"eslint:recommended",
			"plugin:prettier/recommended"
		],
		"env": {
			"es6": true,
			"node": true
		},
		"rules": {
			"prettier/prettier": "error"
		},
		"parserOptions": {
			"sourceType": "module"
		},
		"plugins": [
			"prettier"
		]
	},
	"postcss": {
		"plugins": {
			"postcss-import": {},
			"tailwindcss": {},
			"autoprefixer": {}
		}
	}
}