-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
37 lines (37 loc) · 1.11 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
{
"name": "devoxx4kids-workshop-maze-vr",
"version": "1.0.0",
"description": "Designed for a devoxx4kids workshop to show children how to do objective programming and see what their maze in virtual reality look like",
"license": "MIT",
"private": true,
"repository": {
"type": "git",
"url": "/~https://github.com/Devoxx4KidsDE/workshop-maze-vr.git"
},
"author": "Devoxx4kids.de",
"bugs": {
"url": "/~https://github.com/Devoxx4KidsDE/workshop-maze-vr/issues"
},
"homepage": "/~https://github.com/Devoxx4KidsDE/workshop-maze-vr",
"devDependencies": {
"body-parser": "1.18.2",
"colors": "1.1.2",
"eslint": "5.7.0",
"express": "4.16.2",
"nodemon": "1.18.4",
"systemjs": "0.20.19",
"systemjs-plugin-babel": "0.0.25",
"three": "0.87.1",
"webvr-boilerplate": "0.5.0",
"webvr-polyfill": "0.9.40"
},
"scripts": {
"start": "node ./server.js",
"start:watch": "nodemon --watch ./app --exec \"node ./server.js\"",
"lint": "eslint ./app",
"lint:watch": "nodemon --watch ./app --exec \"npm run lint\""
},
"dependencies": {
"express-ws": "4.0.0"
}
}