-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
69 lines (69 loc) · 1.93 KB
/
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
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
{
"name": "@icco/writing",
"version": "9.0.0",
"private": true,
"scripts": {
"build": "next build",
"chrome": "playwright install --with-deps chromium",
"dev": "next dev -p 8080",
"lint": "next lint --fix",
"lint:spell": "misspell -locale US -w ./posts/",
"postbuild": "next-sitemap",
"start": "next start -p $PORT",
"test": "jest"
},
"dependencies": {
"@heroicons/react": "^2.1.5",
"@icco/react-common": "^2024.11.14-4",
"@mdx-js/loader": "^3.0.0",
"@mdx-js/react": "^3.0.0",
"contentlayer2": "^0.5.0",
"daisyui": "^4.12.11",
"date-fns": "^4.0.0",
"feed": "^4.2.2",
"js-base64": "^3.7.7",
"mdast-util-find-and-replace": "^3.0.0",
"next": "^15.0.3",
"next-contentlayer2": "^0.5.0",
"next-secure-headers": "^2.2.0",
"next-themes": "^0.4.3",
"playwright": "^1.48.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"reading-time": "^1.5.0",
"rehype-mermaid": "^3.0.0",
"rehype-slug": "^6.0.0",
"rehype-starry-night": "^2.2.0",
"remark-emoji": "^5.0.1",
"remark-gfm": "^4.0.0",
"vivus": "^0.4.6"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.10",
"@types/node": "^22.7.4",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@types/vivus": "^0.4.6",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"@wooorm/starry-night": "^3.5.0",
"autoprefixer": "^10.4.15",
"eslint": "^9.17.0",
"eslint-config-next": "^15.0.3",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-simple-import-sort": "^12.0.0",
"next-sitemap": "^4.2.2",
"postcss": "^8.4.36",
"prettier": "^3.0.2",
"tailwind-scrollbar": "^3.1.0",
"tailwindcss": "^3.3.3",
"typescript": "^5.6.2"
},
"prettier": {
"trailingComma": "es5",
"tabWidth": 2,
"semi": false,
"singleQuote": false
}
}