-
Notifications
You must be signed in to change notification settings - Fork 65
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.14 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.14 KB
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
{
"name": "simple-rsc",
"version": "0.0.1",
"description": "A simple React Server Components implementation that you can build yourself.",
"main": "server/index.js",
"type": "module",
"scripts": {
"start": "node --conditions react-server server.js",
"dev": "node --conditions react-server server.js",
"lint": "eslint '**/*.{js,jsx,ts,tsx}'",
"lint:fix": "eslint --fix '**/*.{js,jsx,ts,tsx}'",
"format": "prettier --check '**/*.{js,jsx,ts,tsx}' 'README.md'",
"format:fix": "prettier --write '**/*.{js,jsx,ts,tsx}' 'README.md'"
},
"browserslist": "defaults",
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@hono/node-server": "^1.14.0",
"es-module-lexer": "^1.3.1",
"esbuild": "^0.25.1",
"hono": "^4.7.5",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-server-dom-esm": "npm:@kentcdodds/tmp-react-server-dom-esm@19.0.1"
},
"devDependencies": {
"@types/node": "^18.15.11",
"@types/react": "^19.0.12",
"@types/react-dom": "^19.0.4",
"@typescript-eslint/eslint-plugin": "^5.57.0",
"eslint": "^8.37.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-unicorn": "^46.0.0",
"prettier": "^2.8.7"
}
}