-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.85 KB
/
Copy pathpackage.json
File metadata and controls
85 lines (85 loc) · 2.85 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
76
77
78
79
80
81
82
83
84
85
{
"name": "seok_blog",
"version": "0.1.0",
"private": true,
"type": "module",
"packageManager": "pnpm@9.12.1",
"scripts": {
"optimize-images": "node ./script/optimize-images.js",
"postbuild": "next-sitemap",
"build:analyze": "cross-env NODE_ENV=development ANALYZE=true pnpm run build",
"build": "pnpm run validate-posts && pnpm run optimize-images && next build",
"dev": "next dev",
"serve:static": "python3 -m http.server 3000 --directory out",
"start": "next start",
"lint": "biome lint ./src",
"lint:fix": "biome lint --write ./src",
"prepare": "node -e \"const fs = require('fs'); const hasHusky = fs.existsSync('./node_modules/.bin/husky'); if (process.env.NODE_ENV !== 'production' && hasHusky) require('child_process').execSync('husky install', { stdio: 'inherit' })\"",
"format:fix": "biome format --write ./src",
"format:check": "biome format ./src",
"check": "biome check ./src",
"check:fix": "biome check --write ./src",
"spell-check": "cspell \"src/**/*.{ts,tsx,js,jsx}\"",
"type-check": "npx tsc --noEmit",
"lhci": "lhci autorun",
"sonar": "pnpm exec dotenv -e .env.development -- pnpm exec sonar-scanner",
"new-post": "node ./script/create-post.js",
"validate-posts": "node ./script/validate-posts.js"
},
"dependencies": {
"@mdx-js/loader": "^3.0.1",
"@mdx-js/mdx": "^3.0.1",
"@mdx-js/react": "^3.0.1",
"@next/mdx": "^14.2.5",
"@react-three/fiber": "^8.18.0",
"@react-three/postprocessing": "^2.19.1",
"@svgr/webpack": "^8.1.0",
"autoprefixer": "^10.4.20",
"classnames": "^2.5.1",
"dayjs": "^1.11.12",
"gray-matter": "^4.0.3",
"html-react-parser": "^5.2.6",
"next": "14.2.5",
"next-mdx-remote": "^5.0.0",
"next-sitemap": "^4.2.3",
"postcss": "^8.5.3",
"postcss-nesting": "^13.0.1",
"postprocessing": "^6.39.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"rehype-external-links": "^3.0.0",
"rehype-pretty-code": "^0.14.0",
"rehype-raw": "^7.0.0",
"rehype-stringify": "^10.0.1",
"remark": "^15.0.1",
"remark-gfm": "^4.0.1",
"remark-mdx": "^3.1.1",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.1.2",
"sharp": "^0.33.5",
"swiper": "^11.2.8",
"tailwindcss": "3.4.1",
"three": "^0.184.0",
"unified": "^11.0.5",
"unist-util-visit": "^5.0.0",
"zustand": "^4.5.4"
},
"devDependencies": {
"@biomejs/biome": "^2.4.10",
"@lhci/cli": "^0.14.0",
"@next/bundle-analyzer": "^14.2.5",
"@types/node": "^20.14.15",
"@types/react": "^18.3.20",
"@types/react-dom": "^18.3.0",
"@types/three": "^0.184.0",
"@types/unist": "^3.0.3",
"cross-env": "^10.0.0",
"cspell": "^8.18.1",
"dotenv-cli": "^8.0.0",
"husky": "^8.0.0",
"plato": "^1.7.0",
"sonar-scanner": "^3.1.0",
"ts-prune": "^0.10.3",
"typescript": "^5.8.2"
}
}