-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
76 lines (76 loc) · 2.27 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
71
72
73
74
75
76
{
"name": "dannyguo.com",
"version": "1.0.0",
"repository": "https://github.com/dguo/dannyguo.com",
"author": "Danny Guo",
"private": true,
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"format": "prettier --write .",
"format:check": "prettier --check .",
"preview": "astro preview",
"lint": "yarn lint:css && yarn lint:src",
"lint:css": "stylelint public/css/*",
"lint:src": "eslint src",
"test": "playwright test",
"update-search-index": "atomic-algolia"
},
"dependencies": {
"@astrojs/mdx": "0.19.7",
"@astrojs/rss": "2.4.3",
"@astrojs/sitemap": "1.2.2",
"@fontsource/open-sans": "5.0.5",
"@fontsource/source-code-pro": "5.0.5",
"@fontsource/source-serif-pro": "5.0.5",
"algoliasearch": "4.18.0",
"astro": "2.8.3",
"hastscript": "7.2.0",
"instantsearch.css": "8.0.0",
"instantsearch.js": "4.56.5",
"mdast-util-to-string": "4.0.0",
"reading-time": "1.5.0",
"rehype-autolink-headings": "6.1.1",
"rehype-slug": "5.1.0"
},
"devDependencies": {
"@playwright/test": "1.50.0",
"@typescript-eslint/parser": "6.0.0",
"atomic-algolia": "0.3.19",
"eslint": "8.45.0",
"eslint-plugin-astro": "0.27.2",
"prettier": "3.0.0",
"prettier-plugin-astro": "0.11.0",
"stylelint": "15.10.1",
"stylelint-config-recommended": "13.0.0"
},
"eslintConfig": {
"extends": "plugin:astro/recommended",
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module"
},
"overrides": [
{
"files": [
"*.astro"
],
"parser": "astro-eslint-parser",
"parserOptions": {
"parser": "@typescript-eslint/parser",
"extraFileExtensions": [
".astro"
]
}
}
]
},
"prettier": {
"trailingComma": "none"
},
"stylelint": {
"extends": "stylelint-config-recommended"
},
"packageManager": "[email protected]"
}