forked from narze/hacktober
-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
53 lines (53 loc) · 1.48 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
51
52
53
{
"name": "@example/with-tailwindcss",
"type": "module",
"version": "0.0.1",
"private": true,
"engines": {
"node": ">=16"
},
"scripts": {
"preinstall": "npx only-allow pnpm",
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"typecheck": "astro check && tsc --noEmit && svelte-check",
"prettier:check": "prettier --plugin-search-dir=. --check src/**/*",
"prettier:write": "prettier --plugin-search-dir=. --write src/**/*",
"preview": "astro preview",
"astro": "astro",
"prepare": "husky install",
"lint-staged": "lint-staged"
},
"dependencies": {
"@astrojs/image": "^0.8.0",
"@astrojs/mdx": "^0.11.4",
"@astrojs/svelte": "^1.0.0",
"@astrojs/tailwind": "^2.0.1",
"@fortawesome/free-solid-svg-icons": "^6.2.0",
"astro": "^1.3.1",
"autoprefixer": "^10.4.7",
"canvas-confetti": "^1.5.1",
"postcss": "^8.4.14",
"svelte": "^3.46.4",
"svelte-fa": "^3.0.3",
"tailwindcss": "^3.0.24"
},
"devDependencies": {
"@playwright/test": "^1.27.1",
"@tailwindcss/line-clamp": "^0.4.2",
"@tailwindcss/typography": "^0.5.7",
"atropos": "^1.0.2",
"daisyui": "^2.31.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"prettier-plugin-astro": "^0.5.4",
"prettier-plugin-svelte": "^2.8.0",
"prettier-plugin-tailwindcss": "^0.1.13",
"svelte-check": "^2.9.2"
},
"lint-staged": {
"src/**/*": "prettier --plugin-search-dir=. --write"
}
}