-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
50 lines (50 loc) · 1.42 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
{
"name": "iansutherland.ca",
"version": "2.2.0",
"description": "Personal site of Ian Sutherland",
"author": "Ian Sutherland <[email protected]>",
"license": "MIT",
"private": true,
"homepage": "https://iansutherland.ca",
"repository": {
"type": "git",
"url": "https://github.com/iansu/iansutherland.ca"
},
"type": "module",
"scripts": {
"start": "astro dev",
"dev": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"test": "jest",
"format": "prettier --write \"**/*.{ts,tsx,js,mjs,cjs,json,yaml,yml,md,mdx,astro,css}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,js,mjs,cjs,json,yaml,yml,md,mdx,astro,css}\""
},
"dependencies": {
"@astrojs/react": "^2.0.2",
"@astrojs/sitemap": "^1.1.0",
"@astrojs/tailwind": "^3.0.1",
"@headlessui/react": "^1.7.12",
"@heroicons/react": "^2.0.16",
"@tailwindcss/forms": "^0.5.3",
"astro": "^2.0.15",
"astro-analytics": "^2.6.0",
"clsx": "^1.2.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tailwindcss": "^3.2.7"
},
"devDependencies": {
"@types/jest": "^29.4.0",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"esbuild-jest": "^0.5.0",
"husky": "^8.0.3",
"jest": "^29.4.3",
"prettier": "^2.8.4",
"prettier-plugin-astro": "^0.8.0",
"prettier-plugin-tailwindcss": "^0.2.3",
"pretty-quick": "^3.1.3"
}
}