-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.61 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
{
"name": "shrinkify",
"type": "module",
"version": "0.0.1",
"scripts": {
"astro": "astro",
"build": "astro check && tsc --noEmit && astro build",
"dev": "astro dev",
"dev:expose": "astro dev --host",
"format": "prettier --write .",
"lint:fix": "npx eslint --fix \"src/**/*.{ts,tsx,astro}\"",
"lint": "npx eslint \"src/**/*.{ts,tsx,astro}\"",
"precommit": "npm run lint:fix && npm run typecheck && npm run format",
"preview": "astro preview",
"start": "astro dev",
"typecheck": "tsc --noEmit",
"update-dependencies:update": "ncu -u",
"update-dependencies": "ncu"
},
"dependencies": {
"@astrojs/sitemap": "^1.2.2",
"@astrojs/solid-js": "^2.1.0",
"@astrojs/tailwind": "^3.1.1",
"@astrojs/vercel": "^3.2.4",
"@solid-primitives/scheduled": "^1.3.2",
"astro": "^2.3.0",
"classnames": "^2.3.2",
"solid-js": "^1.7.3",
"solid-transition-group": "^0.2.2",
"tailwindcss": "^3.3.1",
"zod": "^3.21.4"
},
"devDependencies": {
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/container-queries": "^0.1.1",
"@tailwindcss/forms": "^0.5.3",
"@tailwindcss/typography": "^0.5.9",
"@typescript-eslint/eslint-plugin": "^5.58.0",
"@typescript-eslint/parser": "^5.58.0",
"astro-eslint-parser": "^0.13.3",
"dotenv": "^16.0.3",
"eslint": "^8.38.0",
"npm-check-updates": "^16.10.8",
"prettier": "^2.8.7",
"prettier-plugin-tailwindcss": "^0.2.7"
}
}