-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.57 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.57 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
87
88
{
"name": "@icco/writing",
"version": "9.0.0",
"private": true,
"scripts": {
"build": "contentlayer2 build && next build",
"chrome": "playwright install --with-deps chromium",
"dev:contentlayer": "contentlayer2 dev",
"dev:next": "next dev -p 8080",
"dev": "run-p dev:*",
"generate-descriptions": "tsx generate-descriptions.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": "jest"
},
"dependencies": {
"@google/genai": "^1.50.1",
"@heroicons/react": "^2.1.5",
"@icco/react-common": "*",
"@mdx-js/loader": "^3.0.0",
"@mdx-js/react": "^3.0.0",
"@wooorm/starry-night": "^3.5.0",
"contentlayer2": "^0.5.0",
"date-fns": "^4.0.0",
"feed": "^5.0.0",
"gray-matter": "^4.0.3",
"jsdom": "^29.0.2",
"mdast-util-find-and-replace": "^3.0.0",
"next": "^16.1.6",
"next-contentlayer2": "^0.5.0",
"next-secure-headers": "^2.2.0",
"next-themes": "^0.4.3",
"playwright": "^1.48.0",
"pluralize": "^8.0.0",
"react": "^19.2.0",
"react-dom": "^19.2.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",
"vivus": "^0.4.6"
},
"devDependencies": {
"@eslint/compat": "^2.0.5",
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^10.0.0",
"@tailwindcss/cli": "^4.0.3",
"@tailwindcss/postcss": "^4.0.0",
"@tailwindcss/typography": "^0.5.10",
"@types/node": "^25.0.3",
"@types/pluralize": "^0.0.33",
"@types/react": "^19.2.6",
"@types/react-dom": "^19.2.3",
"@types/vivus": "^0.4.6",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"daisyui": "^5.0.13",
"eslint": "^10.0.0",
"eslint-config-next": "^16.0.3",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-simple-import-sort": "^13.0.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.36",
"prettier": "^3.4.2",
"prettier-plugin-tailwindcss": "^0.7.1",
"tailwindcss": "^4.0.0",
"tsx": "^4.21.0",
"typescript": "^6.0.2"
},
"prettier": {
"trailingComma": "es5",
"tabWidth": 2,
"semi": false,
"plugins": [
"prettier-plugin-tailwindcss"
],
"singleQuote": false
}
}