forked from Tailus-UI/astro-theme
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.03 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.03 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
{
"name": "astrolus",
"description": "Nextjs - Tailwind Astrolus Theme",
"version": "1.0.0",
"author": {
"name": "luasenvy",
"email": "luas.envy@gmail.com",
"url": "https://www.luas.kr"
},
"license": "MIT",
"scripts": {
"dev": "next dev",
"build": "rm -rf .next && next build",
"start": "next start",
"lint": "biome check",
"prepare": "husky"
},
"lint-staged": {
"*.{ts,tsx,js,jsx,mjs,cjs,json,css}": ["biome check --write"]
},
"dependencies": {
"next": "^16.0.10"
},
"devDependencies": {
"@biomejs/biome": "^2.3.9",
"@commitlint/cli": "^20.2.0",
"@commitlint/config-conventional": "^20.2.0",
"@tailwindcss/postcss": "^4.1.18",
"@types/node": "^25.0.2",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"classnames": "^2.5.1",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"postcss": "^8.5.6",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"tailwindcss": "^4.1.18",
"tw-animate-css": "^1.4.0",
"typescript": "^5.9.3"
}
}