forked from vercel/next-react-server-components
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 666 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 666 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
{
"name": "server-components-next",
"private": true,
"license": "MIT",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"format": "prettier --write ."
},
"dependencies": {
"cheerio": "^1.0.0-rc.10",
"date-fns": "^2.16.1",
"ioredis": "^4.19.4",
"marked": "^1.2.7",
"next": "^12.0.11-canary.21",
"oauth": "^0.9.15",
"react": "^18.0.0-rc.0",
"react-dom": "^18.0.0-rc.0",
"sanitize-html": "^2.3.0"
},
"devDependencies": {
"prettier": "2.2.1"
},
"prettier": {
"semi": false,
"singleQuote": true,
"jsxBracketSameLine": false,
"arrowParens": "avoid"
}
}