-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.45 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
{
"name": "@example/starter",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"preview": "astro preview",
"lint": "eslint src/**/*.{astro,tsx,ts}",
"lint:markdown": "eslint src/content/**/*.{md,mdx}",
"pretty": "prettier --write ./src/**/*.{md,mdx,astro,ts,tsx}"
},
"devDependencies": {
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@tailwindcss/typography": "^0.5.1",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^5.39.0",
"@typescript-eslint/parser": "^5.39.0",
"autoprefixer": "^10.4.19",
"eslint": "^8.24.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-astro": "^0.19.0",
"eslint-plugin-markdown": "^3.0.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"postcss": "^8.4.38",
"prettier": "^2.7.1",
"prettier-plugin-astro": "^0.5.5",
"tailwindcss": "^3.0.17",
"typescript": "^5.4.5"
},
"dependencies": {
"@astrojs/mdx": "^3.1.0",
"@astrojs/react": "^3.5.0",
"@astrojs/sitemap": "^1.2.2",
"@astrojs/tailwind": "^5.1.0",
"@xstate/react": "^2.0.0",
"astro": "^4.10.0",
"astro-icon": "^0.7.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"sharp": "^0.33.4",
"xstate": "^4.29.0"
},
"volta": {
"node": "20.14.0"
}
}