-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.28 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
{
"private": true,
"engines": {
"node": ">=14.16"
},
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "xo && astro build",
"preview": "astro preview",
"lint": "xo --fix",
"test": "xo"
},
"devDependencies": {
"@astrojs/image": "^0.7.0",
"@astrojs/sitemap": "^1.0.0",
"@astrojs/tailwind": "^2.0.2",
"@astrolib/seo": "^0.2.1",
"@tailwindcss/typography": "^0.5.7",
"@typescript-eslint/parser": "^5.39.0",
"astro": "^1.4.6",
"astro-icon": "^0.7.3",
"eslint-plugin-astro": "^0.20.0",
"limax": "^v3.0.0",
"reading-time": "^1.5.0",
"remark-custom-heading-id": "^1.0.0",
"tailwindcss": "^3.1.8",
"typescript": "^4.8.4",
"xo": "^0.52.4"
},
"xo": {
"envs": [
"es2021",
"node",
"browser"
],
"globals": [
"Astro",
"Fragment"
],
"extensions": [
"astro"
],
"overrides": [
{
"files": [
"**/*.astro"
],
"parser": "astro-eslint-parser",
"parserOptions": {
"parser": "@typescript-eslint/parser"
},
"extraFileExtensions": [
".astro"
]
}
],
"rules": {
"unicorn/filename-case": "off",
"unicorn/text-encoding-identifier-case": "off",
"n/file-extension-in-import": "off",
"operator-linebreak": "off",
"jsx-quotes": [
"error",
"prefer-double"
]
}
}
}