forked from EpicGamesExt/PixelStreamingInfrastructure
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 997 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 997 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": "@epicgames-ps/react-pixelstreamingfrontend-react-ue5.5",
"version": "0.0.1",
"description": "",
"main": "./src/index.tsx",
"scripts": {
"clean": "rimraf ./dist",
"build": "npx webpack --config webpack.prod.js",
"build:dev": "npx webpack --config webpack.dev.js",
"rebuild": "npm run clean && npm run build",
"watch": "npx webpack --watch",
"serve": "webpack serve --config webpack.dev.js",
"serve-prod": "webpack serve --config webpack.prod.js"
},
"devDependencies": {
"@types/react": "^19.0.8",
"@types/react-dom": "^19.0.3",
"html-loader": "^5.1.0",
"html-webpack-plugin": "^5.6.3",
"ts-loader": "^9.5.2",
"typescript": "^5.7.3",
"webpack": "^5.104.1",
"webpack-cli": "^6.0.1"
},
"dependencies": {
"@epicgames-ps/lib-pixelstreamingfrontend-ue5.5": "*",
"react": "^19.0.0",
"react-dom": "^19.0.0"
}
}