-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.02 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
{
"name": "astro-custom-starter",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro check && astro build",
"preview": "astro preview",
"lint": "eslint . --ext .js,.ts,.astro",
"format": "prettier --write . --plugin=prettier-plugin-astro"
},
"dependencies": {
"@astrojs/check": "^0.3.2",
"@astrojs/react": "^3.0.7",
"@astrojs/tailwind": "^5.0.3",
"@nanostores/react": "^0.7.1",
"@types/react": "^18.2.45",
"@types/react-dom": "^18.2.17",
"astro": "^4.0.4",
"nanostores": "^0.9.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tailwindcss": "^3.3.6",
"typescript": "^5.3.3",
"zod": "^3.22.4"
},
"devDependencies": {
"@typescript-eslint/parser": "^6.14.0",
"eslint": "^8.55.0",
"eslint-plugin-astro": "^0.30.0",
"prettier": "^3.1.1",
"prettier-plugin-astro": "^0.12.2",
"prettier-plugin-tailwindcss": "^0.5.9"
},
"engines": {
"node": ">=18",
"pnpm": ">=8"
}
}