-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.03 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
39
{
"name": "editordemo",
"version": "1.0.0",
"description": "demo for a room editor in babylon.js",
"main": "index.ts",
"scripts": {
"test": "webpack --mode development",
"start": "webpack serve --mode development --open",
"build": "webpack --mode production"
},
"repository": {
"type": "git",
"url": "git+https://github.com/99-Knots/EditorDemoCode.git"
},
"author": "99-Knots",
"license": "ISC",
"bugs": {
"url": "https://github.com/99-Knots/EditorDemo/issues"
},
"homepage": "https://github.com/99-Knots/EditorDemo#readme",
"devDependencies": {
"@babylonjs/core": "^7.8.2",
"@babylonjs/materials": "^7.8.2",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"html-webpack-plugin": "^5.6.0",
"ts-loader": "^9.5.1",
"typescript": "^5.4.5",
"webpack": "^5.97.1",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4"
},
"dependencies": {
"css-loader": "^7.1.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"style-loader": "^4.0.0"
}
}