-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 931 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 931 Bytes
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
{
"name": "webxr-workshop",
"version": "1.0.0",
"author": "Ayşegül Yönet",
"description": "FrontEndMasters - 3D on the Web & WebXR Course code samples",
"github": "https://github.com/https://github.com/Yonet/WebXRWorkshop",
"scripts": {
"dev": "concurrently -k \"tsc -p ./src/server -w\" \"tsc -p ./src/client -w\" \"nodemon ./dist/server/server.js\"",
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node ./dist/server/server.js"
},
"devDependencies": {
"@types/dat.gui": "^0.7.6",
"@types/express": "^4.17.7",
"@types/node": "^13.13.52",
"concurrently": "^5.3.0",
"express": "^4.17.1",
"mkcert": "^1.5.1",
"nodemon": "^2.0.4",
"typescript": "^4.9.5"
},
"dependencies": {
"@types/stats.js": "^0.17.0",
"@types/three": "^0.148.1",
"three": "^0.148.0"
}
}