-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.72 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.72 KB
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
{
"name": "@example/blog",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "astro dev",
"build": "astro check && tsc && astro build",
"preview": "astro preview",
"import": "scripts/import",
"format": "prettier --write .",
"lint": "eslint --fix . --max-warnings 0 --ignore-path .gitignore --report-unused-disable-directives",
"lint:ci": "eslint . --max-warnings 0 --ignore-path .gitignore --report-unused-disable-directives"
},
"devDependencies": {
"@astrojs/check": "^0.2.1",
"@astrojs/mdx": "^1.1.2",
"@astrojs/partytown": "^2.0.1",
"@astrojs/prefetch": "^0.0.7",
"@astrojs/react": "^3.0.3",
"@astrojs/sitemap": "^0.1.0",
"@astrojs/tailwind": "^5.0.2",
"@mertasan/tailwindcss-variables": "^2.5.0",
"@types/github-slugger": "^1.3.0",
"@types/node": "^18.7.14",
"@types/react": "^18.0.18",
"@typescript-eslint/parser": "^6.8.0",
"astro": "^3.3.2",
"astro-compress": "^2.0.15",
"autoprefixer": "^10.4.8",
"eslint": "^8.51.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-astro": "^0.29.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-simple-import-sort": "^10.0.0",
"fast-glob": "^3.2.12",
"fp-ts": "^2.12.3",
"github-slugger": "^1.4.0",
"io-ts": "^2.2.18",
"postcss": "^8.4.16",
"prettier": "^3.0.3",
"prettier-plugin-astro": "^0.12.0",
"prettier-plugin-tailwindcss": "^0.5.6",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"tailwindcss": "^3.3.3",
"ts-node": "^11.0.0-beta.1",
"typescript": "^5.2.2",
"unist-util-visit": "^4.1.1",
"zod": "^3.22.4"
},
"dependencies": {
"@vercel/speed-insights": "^1.0.12"
}
}