-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.15 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.15 KB
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
{
"name": "devfolio",
"version": "1.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "astro dev",
"build": "astro build",
"deploy": "scripts/deploy-pages.sh",
"deploy:prod": "scripts/deploy-pages.sh main",
"preview": "astro preview",
"astro": "astro",
"lint": "oxlint",
"format": "oxfmt",
"prepare": "husky",
"lint:fix": "oxlint --fix . && oxfmt",
"check": "astro check"
},
"dependencies": {
"@astrojs/sitemap": "^3.7.1",
"@fontsource/ibm-plex-mono": "^5.2.7",
"@fontsource/space-grotesk": "^5.2.10",
"@iconify-json/lucide": "^1.2.97",
"@iconify-json/simple-icons": "^1.2.73",
"astro-icon": "^1.1.5",
"gsap": "^3.14.2"
},
"devDependencies": {
"@astrojs/check": "^0.9.7",
"@tailwindcss/postcss": "^4.2.1",
"astro": "^6.0.4",
"autoprefixer": "^10.4.27",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"oxfmt": "^0.37.0",
"oxlint": "^1.55.0",
"postcss": "^8.5.8",
"tailwindcss": "^4.2.1",
"typescript": "^5.9.3",
"wrangler": "^4.73.0"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"oxlint --fix",
"oxfmt"
]
}
}