-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.24 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": "wear-a-hat",
"version": "0.1.0",
"private": true,
"description": "",
"main": "built/server.js",
"author": "Microsoft Corporation",
"license": "MIT",
"keywords": [
"mixed reality",
"virtual reality",
"vr",
"altspacevr",
"sample",
"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",
"build-watch": "tsc --build -w",
"lint": "eslint --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 .\""
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^2.17.0",
"@typescript-eslint/parser": "^2.17.0",
"eslint": "^6.8.0",
"nodemon": "^2.0.2",
"typescript": "^3.7.5"
},
"dependencies": {
"@microsoft/mixed-reality-extension-sdk": "^0.20.0",
"@types/dotenv": "^6.1.0",
"@types/node": "^10.3.1",
"concurrently": "^5.1.0",
"dotenv": "^6.2.0"
}
}