-
Notifications
You must be signed in to change notification settings - Fork 88
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 851 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 851 Bytes
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
{
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"format": "prettier --write ."
},
"dependencies": {
"@types/node": "^22.8.7",
"@types/react": "npm:types-react@19.0.0-rc.1",
"@vercel/kv": "^3.0.0",
"cheerio": "1.0.0",
"date-fns": "^4.1.0",
"marked": "^1.2.9",
"ms": "2.1.3",
"next": "15.0.7",
"oauth": "^0.10.0",
"postcss": "^8.4.47",
"react": "19.0.0-rc-02c0e824-20241028",
"react-dom": "19.0.0-rc-02c0e824-20241028",
"sanitize-html": "^2.13.1",
"typescript": "^5.6.3"
},
"prettier": {
"arrowParens": "always",
"singleQuote": true,
"semi": false,
"tabWidth": 2,
"trailingComma": "none"
},
"pnpm": {
"overrides": {
"@types/react": "npm:types-react@19.0.0-rc.1"
}
}
}