-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.42 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
48
49
50
51
52
53
54
55
56
{
"name": "bt-interaction-mre",
"version": "0.1.0",
"private": true,
"description": "",
"main": "built/server.js",
"author": "blackspherefollower",
"license": "BSDv3",
"keywords": [
"mixed reality",
"virtual reality",
"vr",
"altspacevr",
"node"
],
"engines": {
"node": ">=8.12.0",
"npm": ">=6.4.1"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"clean": "tsc --build --clean",
"build": "tsc --build && eslint --ext .ts src",
"build-only": "tsc --build",
"lint": "eslint --ext .ts src",
"start": "node .",
"debug": "nodemon --inspect src/server.ts"
},
"devDependencies": {
"@types/etag": "^1.8.0",
"@types/query-string": "^6.3.0",
"@types/restify": "^8.4.2",
"@types/restify-errors": "^4.3.3",
"@types/semver": "^7.2.0",
"@types/uuid": "^8.0.0",
"@types/ws": "^7.2.4",
"@typescript-eslint/eslint-plugin": "^3.1.0",
"@typescript-eslint/parser": "^3.1.0",
"eslint": "^7.1.0",
"minimist": "^1.2.5",
"nodemon": "^2.0.4",
"ts-node": "^8.10.2",
"ts-node-dev": "^1.0.0-pre.44",
"typescript": "^3.9.3"
},
"dependencies": {
"@microsoft/mixed-reality-extension-sdk": "^0.18.1",
"@types/dotenv": "^8.2.0",
"@types/node": "^14.0.9",
"buttplug": "^0.13.1",
"buttplug-node-websockets": "^0.13.2",
"dotenv": "^8.2.0",
"url-pattern": "^1.0.3",
"ws": "^7.4.6"
}
}