-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.36 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.36 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
39
40
41
42
{
"name": "react-blazor",
"version": "0.1.0",
"description": "React vs. Blazor side by side",
"keywords": [
"React",
"Blazor",
"WebAssembly"
],
"scripts": {
"build:react": "webpack",
"build:blazor": "dotnet publish src/blazor/BlazorChatApp.csproj -c Release && node blazor-output.js Release",
"build:blazor:docker": "docker run --rm -v $(pwd)/src/blazor:/app mcr.microsoft.com/dotnet/sdk:5.0 dotnet publish -c Release app/BlazorChatApp.csproj && node blazor-output.js Release",
"build:blazor:docker:win": "docker run --rm -v ${pwd}/src/blazor:/app mcr.microsoft.com/dotnet/sdk:5.0 dotnet publish -c Release app/BlazorChatApp.csproj && node blazor-output.js Release",
"build": "npm run build:react && npm run build:blazor",
"start": "node serve.js"
},
"private": true,
"author": "Boyan Mihaylov",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/boyanio/react-blazor.git"
},
"devDependencies": {
"@types/react": "^18.2.47",
"@types/react-dom": "^18.2.18",
"connect": "^3.7.0",
"connect-modrewrite": "^0.10.2",
"ncp": "^2.0.0",
"rimraf": "^5.0.5",
"serve-static": "^1.16.2",
"ts-loader": "^9.5.1",
"typescript": "^5.2.2",
"webpack": "^5.105.0",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
}
}