This repository has been archived by the owner on Apr 14, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 65
/
package.json
65 lines (65 loc) · 1.96 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "sumo3d",
"version": "1.0.0",
"description": "Visualization of SUMO traffic simulation",
"main": "index.js",
"dependencies": {
"@types/chai": "^3.4.35",
"@types/chai-as-promised": "^0.0.29",
"@types/chai-http": "^0.0.30",
"@types/geojson": "0.0.31",
"@types/lodash": "^4.14.80",
"@types/material-ui": "^0.18.1",
"@types/mocha": "^2.2.39",
"@types/polyline": "^0.1.27",
"@types/proj4": "^2.3.4",
"@types/react": "15.6.2",
"@types/react-dom": "^15.5.4",
"@types/three": "0.84.20",
"@types/ws": "^3.0.2",
"awesome-typescript-loader": "^3.0.0-beta.18",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"chai-http": "^3.0.0",
"chai-roughly": "^1.0.0",
"dat.gui": "^0.6.1",
"extrude-polyline": "^1.0.6",
"imports-loader": "^0.7.1",
"lodash": "^4.17.4",
"material-ui": "^0.19.1",
"polyline": "^0.2.0",
"proj4": "^2.4.4",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"source-map-loader": "^0.1.5",
"stats.js": "^0.17.0",
"string-hash": "^1.1.0",
"three": "^0.87.1",
"three-mtl-loader": "^1.0.2",
"three-obj-loader": "^1.1.2",
"three-orbit-controls": "^82.1.0",
"three-simplicial-complex": "^69.0.6",
"ts-node": "^3.3.0",
"typescript": "^2.5.2",
"webpack": "^1.13.3",
"whatwg-fetch": "^2.0.2",
"ws": "^3.1.0"
},
"devDependencies": {
"mocha": "^2.5.3",
"prettier": "^1.9.2",
"tslint": "^5.2.0"
},
"scripts": {
"build": "tsc",
"develop": "./scripts/develop.sh",
"watch": "webpack --watch",
"lint": "tslint --project tsconfig.json",
"prettier-test": "./scripts/prettier.sh --list-different",
"prettier": "./scripts/prettier.sh --write",
"run-tests": "mocha --compilers ts:ts-node/register **/*_test.ts",
"test": "yarn prettier-test && yarn lint && yarn build && yarn run-tests && yarn webpack",
"webpack": "webpack"
},
"author": "Sidewalk Engineers <[email protected]>"
}