-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·47 lines (47 loc) · 1.27 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
40
41
42
43
44
45
46
47
{
"name": "multiuser-blocks",
"version": "1.1.2",
"description": "An experiment to combine physics, UI and data visualization elements in a multiuser environment.",
"homepage": "https://multiuser-blocks.glitch.me/",
"keywords": [
"node",
"glitch",
"multiuser",
"physics",
"blocks"
],
"author": "pschroen",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/pschroen/multiuser-blocks"
},
"bugs": {
"url": "https://github.com/pschroen/multiuser-blocks/issues"
},
"engines": {
"node": "16.x"
},
"type": "module",
"main": "server.js",
"scripts": {
"prestart": "rollup -c",
"build": "rollup -c",
"dev": "concurrently --names \"ROLLUP,HTTP\" -c \"bgBlue.bold,bgGreen.bold\" \"rollup -c -w -m inline\" \"node server.js\"",
"start": "node server.js"
},
"dependencies": {
"@alienkitty/alien.js": "github:alienkitty/alien.js",
"@alienkitty/space.js": "github:alienkitty/space.js",
"express": "^4.21.1",
"express-ws": "^5.0.2",
"oimophysics": "saharan/OimoPhysics#v1.2.3",
"three": "^0.170.0"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^13.3.0",
"concurrently": "^7.6.0",
"rollup": "^2.79.2",
"rollup-plugin-bundleutils": "^1.2.6"
}
}