forked from nevthereal/linktree-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 881 Bytes
/
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
{
"name": "linktree",
"version": "0.0.1",
"type": "module",
"scripts": {
"generate:netlify-toml": "node --loader ts-node/esm src/lib/generateNetlifyToml.ts",
"build": "npm run generate:netlify-toml && astro check && astro build",
"dev": "astro dev",
"start": "astro dev",
"preview": "astro preview",
"astro": "astro"
},
"dependencies": {
"@astrojs/check": "^0.5.3",
"@astrojs/tailwind": "^5.1.0",
"@fortawesome/fontawesome-svg-core": "^6.7.2",
"@fortawesome/free-brands-svg-icons": "^6.7.2",
"@fortawesome/free-solid-svg-icons": "^6.7.2",
"astro": "^4.3.6",
"astro-icon": "^1.1.5",
"prettier-plugin-tailwindcss": "^0.5.11",
"tailwindcss": "^3.4.1",
"typescript": "^5.3.3"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.10",
"astro-compress": "^2.3.6",
"ts-node": "^10.9.1"
}
}