-
Notifications
You must be signed in to change notification settings - Fork 61
/
package.json
38 lines (38 loc) · 1.18 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
{
"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 server.js",
"dev": "node server.js",
"lint": "eslint '**/*.{js,jsx,ts,tsx}'",
"lint:fix": "eslint --fix '**/*.{js,jsx,ts,tsx}'",
"format": "prettier --check . --ignore-path .gitignore !package.json !pnpm-lock.yaml",
"format:fix": "prettier --write . --ignore-path .gitignore !package.json !pnpm-lock.yaml"
},
"browserslist": "defaults",
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@hono/node-server": "^1.2.0",
"es-module-lexer": "^1.3.1",
"esbuild": "^0.17.14",
"hono": "^3.9.2",
"react": "18.3.0-next-3706edb81-20230308",
"react-dom": "18.3.0-next-3706edb81-20230308",
"react-server-dom-webpack": "0.0.0-experimental-41b4714f1-20230328"
},
"devDependencies": {
"@types/node": "^18.15.11",
"@types/react": "^18.0.31",
"@types/react-dom": "^18.0.11",
"@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"
}
}