-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 778 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 778 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
28
29
30
31
32
33
34
35
{
"name": "atm-challange",
"version": "0.0.1",
"description": "",
"main": "server.js",
"jest": {
"preset": "ts-jest",
"testMatch": ["**/__tests__/**/*.ts?(x)","**/?(*.)+(spec|test).ts?(x)"]
},
"scripts": {
"start": "tsc && node server.js",
"test": "tsc && jest"
},
"dependencies": {
"@types/jest": "^24.0.15",
"browserify-middleware": "^8.1.1",
"express": "^4.16.4",
"ngraph.graph": "^18.0.0",
"three": "^0.125.0"
},
"keywords": [
"express",
"webvr"
],
"license": "MIT",
"devDependencies": {
"@types/aframe": "^0.8.3",
"@types/node": "^12.0.8",
"@types/three": "^0.103.2",
"jest": "^24.8.0",
"ngraph.forcelayout3d": "^0.0.16",
"ts-jest": "^24.0.2",
"typescript": "^3.5.2"
}
}