-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
39 lines (39 loc) · 1.08 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
{
"name": "@example/basics",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"lint": "prettier --write \"**/*.{js,jsx,ts,tsx,md,mdx,astro}\" && eslint --fix \"src/**/*.{js,ts,jsx,tsx,astro}\""
},
"dependencies": {
"@astrojs/react": "^3.0.0",
"@astrojs/tailwind": "^5.0.0",
"@astrojs/ts-plugin": "^1.0.4",
"@cosmicjs/sdk": "^1.0.5",
"astro": "^3.0.8",
"date-fns": "^2.29.2",
"react-markdown": "^8.0.3",
"sharp": "^0.32.1",
"tailwindcss": "^3.3.2"
},
"devDependencies": {
"@types/node": "^18.7.15",
"@typescript-eslint/parser": "^5.59.2",
"astro-robots-txt": "^0.3.8",
"eslint": "^8.39.0",
"eslint-plugin-astro": "^0.26.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"prettier": "^2.8.8",
"prettier-config-standard": "^5.0.0",
"prettier-plugin-astro": "^0.8.0",
"prettier-plugin-tailwindcss": "^0.2.8",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"typescript": "^5.2.2"
}
}