forked from usc-cisco/ring
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.13 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.13 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
{
"name": "ring",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"format": "biome format --write ./src",
"check": "biome check --write ./src",
"check:fix": "biome check --fix --unsafe ./src",
"prepare": "husky",
"postinstall": "npm run prepare"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,css,scss,md}": [
"npm run check:fix && npm run format"
]
},
"dependencies": {
"@astrojs/react": "^4.2.4",
"@fontsource-variable/bricolage-grotesque": "^5.2.6",
"@fontsource-variable/geist": "^5.2.5",
"@fontsource-variable/geist-mono": "^5.2.5",
"@tailwindcss/vite": "^4.1.4",
"@types/react": "^19.1.2",
"@types/react-dom": "^19.1.2",
"astro": "^5.6.2",
"fuse.js": "^7.1.0",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"sharp": "^0.34.1",
"tailwindcss": "^4.1.4"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"husky": "^9.1.7",
"lint-staged": "^15.5.1"
}
}