-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.45 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.45 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "three-game-engine",
"version": "0.10.0",
"description": "Simple light-weight game engine using three.js, three-mesh-ui and rapier",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"scripts": {
"lint": "eslint src/**",
"lint:fix": "eslint src/** --fix",
"build": "tsc --project tsconfig.json",
"test": "jest",
"prepublish": "npm run test && npm run build",
"scene_editor": "npm run build && node ./scene_editor/sceneEditorServer.js",
"web_site": "node ./web_site/devServer.js",
"build_web_site": "npx webpack --config ./web_site/prodWebpackConfig.js",
"build_examples": "npx webpack --config ./examples/first_person_kinematic_character_controller/prodWebpackConfig.js",
"build_scene_editor": "npx webpack --config ./scene_editor/prodWebpackConfig.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/WesUnwin/three-game-engine.git"
},
"keywords": [
"three.js",
"webgl",
"game",
"engine",
"rapier",
"three-mesh-ui"
],
"author": "Wes Unwin",
"license": "ISC",
"bugs": {
"url": "https://github.com/WesUnwin/three-game-engine/issues"
},
"homepage": "https://github.com/WesUnwin/three-game-engine#readme",
"dependencies": {
"@dimforge/rapier3d-compat": "^0.11.2",
"events": "^3.3.0",
"three": "^0.168.0",
"three-mesh-ui": "^6.5.4"
},
"devDependencies": {
"@babel/cli": "^7.23.3",
"@babel/core": "^7.23.3",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/preset-env": "^7.23.3",
"@babel/preset-react": "^7.23.3",
"@babel/preset-typescript": "^7.23.2",
"@codemirror/lang-javascript": "^6.2.2",
"@reduxjs/toolkit": "^1.9.7",
"@uiw/codemirror-theme-vscode": "^4.21.24",
"@uiw/react-codemirror": "^4.21.24",
"babel-jest": "^29.7.0",
"babel-loader": "^9.1.3",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.8.1",
"eslint": "^8.51.0",
"html-webpack-plugin": "^5.5.3",
"jest": "^29.7.0",
"react": "^18.2.0",
"react-color": "^2.19.3",
"react-dom": "^18.2.0",
"react-icons": "^4.12.0",
"react-markdown": "^9.0.1",
"react-redux": "^8.1.3",
"react-router-dom": "^6.22.1",
"react-slider": "^2.0.6",
"react-tooltip": "^5.25.0",
"remark-gfm": "^4.0.0",
"style-loader": "^3.3.3",
"typescript": "^5.2.2",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
}
}