-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.96 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 1.96 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "homepage",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"dev:client": "vite build --mode=development --watch --outDir dist/client",
"dev:server": "nodemon --exec tsx server.ts",
"dev": "npm-run-all -p 'dev:*'",
"build:client": "vite build --outDir dist/client --ssrManifest",
"build:server": "vite build --ssr src/entry-server.tsx --outDir dist/server",
"build": "yarn build:client && yarn build:server && tsx build.ts",
"test": "vitest"
},
"type": "module",
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/mock-fs": "^4.13.4",
"@vitejs/plugin-react": "^4.3.4",
"autoprefixer": "^10.4.20",
"husky": "^4.3.5",
"lint-staged": "^10.5.3",
"mock-fs": "^4.10.4",
"nodemon": "^2.0.7",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.47",
"tsx": "^4.19.2",
"vite": "^5.4.10",
"vitest": "^3.0.5"
},
"engines": {
"node": ">=20.11.1"
},
"dependencies": {
"@types/express": "^5.0.0",
"@types/feather-icons": "^4.29.4",
"@types/katex": "^0.16.7",
"@types/react": "^19.0.8",
"@types/react-dom": "^19.0.3",
"express": "^4.17.1",
"feather-icons": "^4.28.0",
"front-matter": "^3.1.0",
"highlight.js": "^10.4.1",
"jotai": "^2.12.1",
"katex": "^0.16.10",
"marked": "^4.0.10",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-helmet-async": "^1.3.0",
"react-router": "^7.1.5",
"sass": "^1.25.0",
"typescript": "^4.9",
"xml-js": "^1.6.11"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.{js,ts,tsx,json}": "biome check --write"
},
"repository": {
"type": "git",
"url": "git+https://github.com/znagadeon/homepage.git"
},
"bugs": {
"url": "https://github.com/znagadeon/homepage/issues"
},
"homepage": "https://znagadeon.dev",
"description": "",
"packageManager": "yarn@3.8.1"
}