-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.75 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.75 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
{
"name": "karaoke-queue",
"version": "0.0.1",
"description": "Karaoke Queue to mimic the queue in Altspace KTT",
"main": "built/server.js",
"repository": {
"type": "git",
"url": "git+"
},
"keywords": [
"mixed reality",
"virtual reality",
"vr",
"altspacevr",
"node"
],
"engines": {
"node": ">=10.16.0",
"npm": ">=6.4.1"
},
"author": "Duke's VR Tech",
"license": "MIT",
"bugs": {
"url": ""
},
"homepage": "",
"scripts": {
"test": "jest --passWithNoTests",
"clean": "tsc --build --clean",
"build": "tsc --build",
"build-only": "tsc --build",
"build-watch": "tsc --build --watch --preserveWatchOutput",
"lint": "eslint --ext .ts src",
"lint:fix": "eslint --fix --ext .ts src",
"start": "node .",
"start-watch": "nodemon --nolazy --inspect .",
"debug": "node --nolazy --inspect=9229 .",
"debug-watch": "npm run build-only && concurrently \"npm run build-watch\" \"nodemon --nolazy --inspect=9229 .\"",
"debug-watch-brk": "npm run build-only && concurrently \"npm run build-watch\" \"nodemon --nolazy --inspect-brk=9229 .\"",
"release": "release-it",
"prepare": "husky install"
},
"devDependencies": {
"@types/jest": "^26.0.23",
"@types/node": "^10.17.59",
"@typescript-eslint/eslint-plugin": "^2.17.0",
"@typescript-eslint/parser": "^2.17.0",
"concurrently": "^5.1.0",
"eslint": "^6.8.0",
"husky": "^6.0.0",
"jest": "^26.6.3",
"nodemon": "^2.0.2",
"release-it": "^14.6.2",
"ts-jest": "^26.5.6",
"typescript": "^3.7.5"
},
"dependencies": {
"@microsoft/mixed-reality-extension-sdk": "^0.20.0",
"@types/dotenv": "^6.1.0",
"@types/word-wrap": "^1.2.1",
"dotenv": "^6.2.0",
"word-wrap": "^1.2.3"
}
}