-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.69 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.69 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
{
"name": "makers21",
"version": "1.0.0",
"description": "Multiplayer 3D spaceship game with head tracking controls",
"main": "index.js",
"scripts": {
"dev": "webpack serve --mode development",
"build": "webpack --mode production",
"start-server": "DEEPSTREAM_CONFIG_DIRECTORY=./server/config/config.yaml node ./server/index.js",
"npc-gen": "node ./server/npc-gen.js",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix",
"format": "prettier --write \"src/**/*.js\"",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/uv-orbs/makers21.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/uv-orbs/makers21/issues"
},
"homepage": "https://github.com/uv-orbs/makers21#readme",
"dependencies": {
"@deepstream/client": "^5.2.4",
"@deepstream/server": "^5.2.4",
"@mediapipe/camera_utils": "^0.3.1675466862",
"@mediapipe/drawing_utils": "^0.3.1675466124",
"@mediapipe/face_mesh": "^0.4.1633559619",
"aframe": "^1.5.0",
"aframe-environment-component": "^1.3.3",
"buffer": "^6.0.3",
"deepstream": "0.0.0",
"express": "^4.18.2",
"ngrok": "^5.0.0-beta.2",
"three": "^0.160.0"
},
"devDependencies": {
"@babel/core": "^7.23.0",
"@babel/preset-env": "^7.23.0",
"babel-loader": "^9.1.3",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.8.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"html-webpack-plugin": "^5.6.0",
"prettier": "^3.2.0",
"style-loader": "^3.3.3",
"webpack": "^5.90.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
}
}