-
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.57 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.57 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": "website",
"type": "module",
"version": "0.0.1",
"scripts": {
"astro": "astro",
"build": "astro check && astro build",
"dev": "netlify dev",
"format": "prettier \"src/**/*.{astro,tsx}\" --write",
"lint": "eslint \"src/**/*.{tsx,astro}\"",
"preview": "astro preview",
"start": "netlify dev",
"test": "vitest"
},
"dependencies": {
"@astrojs/check": "^0.3.1",
"@astrojs/mdx": "^2.0.0",
"@astrojs/prefetch": "^0.4.1",
"@astrojs/react": "^3.0.7",
"@astrojs/sitemap": "^3.0.3",
"@astrojs/tailwind": "^5.0.3",
"@netlify/functions": "^2.4.1",
"@types/react": "^18.2.38",
"@types/react-dom": "^18.2.17",
"airtable": "^0.12.2",
"astro": "^4.1.1",
"astro-icon": "^1.1.0",
"clsx": "^2.0.0",
"nodemailer": "^6.9.8",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tailwindcss": "^3.3.5",
"typescript": "^5.3.2",
"zod": "^3.22.4"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^14.2.1",
"@types/nodemailer": "^6.4.14",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"@vitejs/plugin-react": "^4.2.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-astro": "^0.31.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"jsdom": "^24.0.0",
"netlify-cli": "^17.11.1",
"prettier": "^3.1.0",
"prettier-plugin-astro": "^0.12.2",
"prettier-plugin-tailwindcss": "^0.5.7",
"vitest": "^1.3.1"
}
}