-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 994 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
{
"name": "mehm8128-portfolio",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "run-p dev:next gen:css",
"dev:next": "NEXT_PUBLIC_BUILD_TIME=$(date --iso-8601=\"second\") next dev",
"build": "next build",
"start": "next start",
"type-check": "tsc --noEmit",
"biome": "biome check --write src",
"biome:ci": "biome ci src",
"lint:markup": "markuplint \"**/*.[jt]sx\"",
"gen:css": "hcm 'src/**/*.module.css' --watch",
"gen:css-ci": "hcm 'src/**/*.module.css'"
},
"dependencies": {
"clsx": "^2.1.1",
"next": "^14.2.7",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"the-new-css-reset": "^1.11.3"
},
"devDependencies": {
"@biomejs/biome": "1.9.2",
"@markuplint/jsx-parser": "^4.7.5",
"@markuplint/react-spec": "^4.5.5",
"@types/node": "22.5.1",
"@types/react": "18.3.5",
"@types/react-dom": "18.3.0",
"happy-css-modules": "^3.1.1",
"markuplint": "^4.9.2",
"npm-run-all2": "^6.2.3",
"postcss": "^8.4.47",
"typescript": "5.5.4"
}
}