-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 2.82 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "astro-furrets",
"version": "0.0.1",
"private": true,
"type": "module",
"scripts": {
"astro": "astro",
"build": "astro build",
"check": "astro check && tsc --noEmit",
"clean": "npm run clean:dist && npm run clean:img",
"clean:client": "rm -rf .astro/client",
"clean:dist": "rm -rf .astro/",
"clean:img": "rm -rf .cache/astro/image-tools/",
"clean:server": "rm -rf .astro/server",
"dev": "astro dev --host",
"format": "prettier --check . --config prettier.config.json --ignore-path .gitignore",
"format:fix": "prettier --write . --config prettier.config.json --ignore-path .gitignore",
"lint": "eslint . --config eslint.config.json --ignore-path .gitignore",
"lint:fix": "eslint . --config eslint.config.json --ignore-path .gitignore --fix",
"start": "node server/index.mjs | miami-vice"
},
"browserslist": [
"> 0.2% and not dead",
"maintained node versions"
],
"dependencies": {
"@astrojs/cloudflare": "^6.2.2",
"@astrojs/node": "^5.1.1",
"@astrojs/partytown": "^1.2.0",
"@astrojs/react": "^2.1.1",
"@astrojs/sitemap": "^1.2.2",
"@astrojs/tailwind": "^3.1.1",
"@fastify/caching": "^8.3.0",
"@fastify/compress": "^6.2.1",
"@fastify/cors": "^8.2.1",
"@fastify/formbody": "^7.4.0",
"@fastify/helmet": "^10.1.0",
"@fastify/middie": "^8.1.0",
"@fastify/static": "^6.10.0",
"@iconify/json": "^2.2.49",
"@nanostores/react": "^0.4.1",
"@replit/database": "^2.0.3",
"@svgr/core": "^7.0.0",
"@tailwindcss/typography": "^0.5.9",
"astro": "2.2.3",
"astro-compress": "^1.1.35",
"astro-critters": "^1.1.31",
"astro-google-fonts-optimizer": "^0.2.2",
"astro-imagetools": "^0.8.1",
"astro-og-canvas": "^0.1.7",
"astro-robots-txt": "^0.4.1",
"astro-seo": "^0.7.2",
"astro-webmanifest": "^0.5.1",
"astrojs-service-worker": "^1.0.0",
"autoprefixer": "^10.4.14",
"cssnano": "^6.0.0",
"fastify": "^4.15.0",
"glob": "^10.0.0",
"lru-cache": "^9.0.1",
"nanostores": "^0.7.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"serve-static": "^1.15.0",
"sharp": "^0.32.0",
"swr": "^2.1.3",
"tailwindcss": "^3.3.1",
"unplugin-auto-import": "^0.15.2",
"unplugin-icons": "^0.16.1"
},
"devDependencies": {
"@svgr/plugin-jsx": "^7.0.0",
"@trivago/prettier-plugin-sort-imports": "^4.1.1",
"@types/node": "^18.15.11",
"@types/react": "^18.0.35",
"@types/react-dom": "^18.0.11",
"@typescript-eslint/parser": "^5.58.0",
"@vue/compiler-sfc": "^3.2.47",
"eslint": "^8.38.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-astro": "^0.26.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"postcss": "^8.4.21",
"postcss-fontpath": "^1.0.0",
"postcss-import": "^15.1.0",
"prettier": "^2.8.7",
"prettier-plugin-astro": "^0.8.0",
"prettier-plugin-packagejson": "^2.4.3",
"prettier-plugin-tailwindcss": "^0.2.7",
"sass": "^1.62.0",
"typescript": "^5.0.4"
}
}