-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
52 lines (52 loc) · 1.52 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
{
"name": "rsc",
"type": "module",
"scripts": {
"build": "bun build.ts",
"predev": "cp -r ../react/build/oss-experimental/* ./node_modules/",
"dev": "NODE_ENV='production' nodemon -e ts,tsx -w src -x 'bun run build && bunx concurrently \"bun dev:rsc\" \"bun dev:ssr\"'",
"dev:rsc": "nodemon -e ts,tsx -w rsc.ts -x 'bun --conditions='react-server' rsc.ts'",
"dev:ssr": "nodemon -e ts,tsx -w ssr.ts -w export.ts -x 'bun ssr.ts'",
"export": "bun export.ts",
"format": "prettier --ignore-unknown --write ."
},
"prettier": {
"arrowParens": "avoid",
"bracketSameLine": true,
"bracketSpacing": true,
"plugins": [
"prettier-plugin-organize-imports",
"prettier-plugin-tailwindcss"
],
"printWidth": 110,
"semi": false,
"singleQuote": false,
"trailingComma": "none"
},
"devDependencies": {
"@types/bun": "latest",
"@types/busboy": "^1.5.4",
"@types/express": "^5.0.0",
"@types/react": "latest",
"@types/react-dom": "latest",
"@types/react-syntax-highlighter": "^15.5.13",
"busboy": "^1.6.0",
"colors": "^1.4.0",
"compression": "^1.7.5",
"express": "next",
"nodemon": "^3.1.7",
"prettier": "^3.3.3",
"prettier-plugin-organize-imports": "^4.1.0",
"prettier-plugin-tailwindcss": "^0.6.8",
"shiki": "^1.22.2",
"sonner": "^1.7.0",
"tailwindcss": "^3.4.14"
},
"peerDependencies": {
"typescript": "^5.4.2"
},
"packageManager": "[email protected]",
"dependencies": {
"@types/compression": "^1.7.5"
}
}