-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
79 lines (79 loc) · 2.57 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
70
71
72
73
74
75
76
77
78
79
{
"name": "mwskwong.com",
"version": "4.0.0",
"private": true,
"scripts": {
"prebuild": "drizzle-kit migrate",
"build": "next build",
"dev": "next dev",
"format": "prettier --write .",
"format:check": "prettier --check .",
"postinstall": "patch-package",
"lint": "next lint --no-cache",
"start": "next start",
"stylelint": "stylelint **/*.css",
"upgrade": "npm update && npm run postinstall && tsc && npm run lint -- --fix && npm run stylelint -- --fix && npm run format"
},
"dependencies": {
"@neondatabase/serverless": "^0.10.4",
"@radix-ui/themes": "^3.2.0-rc.5",
"@tabler/icons-react": "^3.28.1",
"@vercel/analytics": "^1.4.1",
"@vercel/speed-insights": "^1.1.0",
"clsx": "^2.1.1",
"contentful": "^11.4.3",
"dedent": "^1.5.3",
"dotenv": "^16.4.7",
"drizzle-orm": "^0.38.4",
"feed": "^4.2.2",
"next": "^15.1.5",
"next-mdx-remote": "^5.0.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"rehype-pretty-code": "^0.14.0",
"rehype-slug": "^6.0.0",
"remark-github-blockquote-alert": "^1.3.0",
"server-only": "^0.0.1",
"shiki": "^1.29.1"
},
"devDependencies": {
"@csstools/postcss-global-data": "^3.0.0",
"@eslint-community/eslint-plugin-eslint-comments": "^4.4.1",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.18.0",
"@next/bundle-analyzer": "^15.1.5",
"@next/eslint-plugin-next": "^15.1.5",
"@total-typescript/ts-reset": "^0.6.1",
"@types/node": "^22.10.7",
"@types/react": "^19.0.7",
"@types/react-dom": "^19.0.3",
"autoprefixer": "^10.4.20",
"babel-plugin-react-compiler": "latest",
"drizzle-kit": "^0.30.2",
"eslint": "^9.18.0",
"eslint-config-prettier": "^10.0.1",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-drizzle": "^0.2.3",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-compiler": "latest",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-unicorn": "^56.0.1",
"patch-package": "^8.0.0",
"postcss": "^8.5.1",
"postcss-custom-media": "^11.0.5",
"postcss-import": "^16.1.0",
"postcss-load-config": "^6.0.1",
"postcss-nesting": "^13.0.1",
"prettier": "^3.4.2",
"prettier-plugin-packagejson": "^2.5.8",
"schema-dts": "^1.1.2",
"stylelint": "^16.13.2",
"stylelint-config-css-modules": "^4.4.0",
"stylelint-config-recess-order": "^6.0.0",
"stylelint-config-standard": "^37.0.0",
"typescript": "^5.7.3",
"typescript-eslint": "^8.20.0"
}
}