-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
41 lines (41 loc) · 916 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
31
32
33
34
35
36
37
38
39
40
41
{
"name": "@h-projects/website",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev --turbo",
"build": "next build",
"format": "biome format --write .",
"check": "biome check .",
"lint": "biome lint .",
"typecheck": "tsc",
"test": "pnpm run \"/^(check|typecheck)$/\""
},
"dependencies": {
"next": "^14.2.3",
"next-themes": "^0.3.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-icons": "^5.2.1"
},
"devDependencies": {
"@biomejs/biome": "^1.7.3",
"@types/node": "^20.12.12",
"@types/react": "^18.3.2",
"typescript": "^5.4.5"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"packageManager": "[email protected]"
}