-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.42 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 loc) · 2.42 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
86
{
"name": "@icco/writing",
"version": "9.0.0",
"private": true,
"packageManager": "pnpm@11.2.2",
"engines": {
"node": ">=26"
},
"scripts": {
"build": "contentlayer2 build && next build",
"contentlayer:build": "contentlayer2 build",
"chrome": "playwright install --with-deps chromium",
"dev:contentlayer": "contentlayer2 dev",
"dev:next": "next dev -p 8080",
"dev": "run-p dev:*",
"prepare-posts": "tsx prepare-posts.ts",
"lint": "eslint --fix .",
"lint:spell": "misspell -locale US -w ./posts/",
"start": "next start -p $PORT",
"clean": "rm -rf node_modules .next .contentlayer",
"tw": "tailwindcss -i src/app/globals.css",
"test": "vitest run"
},
"dependencies": {
"@google/genai": "^2.22.0",
"@heroicons/react": "^2.2.0",
"@icco/react-common": "^2026.10901.6",
"@imgix/js-core": "^3.8.0",
"@wooorm/starry-night": "^3.11.0",
"contentlayer2": "^0.5.8",
"date-fns": "^4.4.0",
"feed": "^6.0.0",
"gray-matter": "^4.0.3",
"jsdom": "^30.0.1",
"mdast-util-find-and-replace": "^3.0.2",
"next": "^16.3.5",
"next-contentlayer2": "^0.5.8",
"next-secure-headers": "^2.2.0",
"playwright": "^1.63.0",
"pluralize": "^8.0.0",
"react": "^19.3.0",
"react-dom": "^19.3.0",
"reading-time": "^1.5.0",
"rehype-github-emoji": "^1.0.0",
"rehype-mermaid": "^3.0.0",
"rehype-slug": "^6.0.0",
"rehype-starry-night": "^2.2.0",
"remark": "^15.0.1",
"remark-gfm": "^4.0.1",
"remark-html": "^16.0.1",
"strip-markdown": "^6.0.0",
"unified": "^11.0.5"
},
"devDependencies": {
"@eslint/compat": "^2.1.1",
"@tailwindcss/cli": "^4.3.3",
"@tailwindcss/postcss": "^4.3.3",
"@tailwindcss/typography": "^0.5.20",
"@types/mdx": "^2.0.14",
"@types/node": "^26.5.1",
"@types/pluralize": "^0.0.33",
"@types/react": "^19.3.0",
"@types/react-dom": "^19.3.0",
"@typescript-eslint/parser": "^8.70.0",
"daisyui": "^5.7.37",
"eslint": "^10.10.0",
"eslint-config-next": "^16.3.5",
"npm-run-all": "^4.1.5",
"postcss": "^8.5.28",
"prettier": "^3.9.6",
"prettier-plugin-tailwindcss": "^0.8.1",
"tailwindcss": "^4.3.3",
"tsx": "^4.23.13",
"typescript": "^6.0.3",
"vitest": "^5.0.0"
},
"prettier": {
"trailingComma": "es5",
"tabWidth": 2,
"semi": false,
"plugins": [
"prettier-plugin-tailwindcss"
],
"singleQuote": false
}
}