-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 895 Bytes
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 895 Bytes
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
{
"name": "garner-jukebox",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro check && astro build && sudo cp -r ./dist/* /usr/share/nginx/html",
"preview": "astro preview",
"astro": "astro",
"format:fix": "prettier --write .",
"production": "serve -l 3000 dist",
"prepare": "husky"
},
"dependencies": {
"@astrojs/check": "^0.8.3",
"@astrojs/netlify": "^5.4.0",
"@astrojs/solid-js": "^4.4.0",
"@astrojs/tailwind": "^5.1.0",
"@astrojs/vercel": "^7.8.0",
"animate.css": "^4.1.1",
"astro": "^4.12.2",
"classnames": "^2.5.1",
"solid-js": "^1.8.19",
"tailwindcss": "^3.4.7",
"typescript": "^5.5.4"
},
"devDependencies": {
"husky": "^9.1.6",
"prettier": "^3.3.3",
"prettier-plugin-astro": "^0.14.1",
"solid-devtools": "^0.30.1"
}
}