-
-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 786 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 786 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
{
"name": "rsc",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build:server": "esbuild --platform=node --bundle server.tsx --outfile=dist/server.js",
"build:client": "esbuild --bundle index.tsx --outfile=dist/client.js",
"build:tsc": "tsc",
"build": "run-p build:*"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"express": "^4.18.2",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@types/express": "^4.17.17",
"@types/react": "^18.2.14",
"@types/react-dom": "^18.2.6",
"esbuild": "^0.18.10",
"npm-run-all": "^4.1.5",
"typescript": "5.2.0-dev.20230630",
"vite": "^4.3.9"
}
}