-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.83 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
{
"name": "chain-effect-simulator",
"version": "2.0.0",
"description": "chain-effect-simulator",
"main": "dist/main.js",
"scripts": {
"build": "tsc && npm run copy-config && npm run copy-schemas && npm run copy-env",
"copy-config": "cpy --parents \"config/*.json\" ./dist",
"copy-schemas": "cpy --parents \"data/**/*.{avsc,asc,json}\" ./dist",
"copy-env": "cpy --parents \".env\" ./dist",
"dev": "tsc -w",
"start": "node dist/main.js",
"restart": "npm run build && npm run start",
"quickrestart": "tsc && npm run start",
"test": "mocha --timeout 3000 --require ts-node/register test/index.ts",
"docker:build": "docker build -t drivereu/chain-effect-simulator:latest ."
},
"author": {
"name": "Rinze Bruining",
"email": "Rinze.Bruining@tno.nl"
},
"repository": {
"type": "git",
"url": "https://github.com/driver-eu/csCOP"
},
"license": "MIT",
"dependencies": {
"@types/async": "^2.4.2",
"@types/geojson": "^7946.0.7",
"async": "^2.6.3",
"chokidar": "^3.3.1",
"compression": "^1.7.4",
"cors": "^2.8.5",
"d3-contour": "^1.3.2",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"fs-extra": "^8.1.0",
"geojson": "^0.5.0",
"moment": "^2.24.0",
"node-test-bed-adapter": "^2.0.8",
"test-bed-schemas": "^0.3.8",
"underscore": "^1.9.2",
"winston": "^3.2.1",
"winston-transport": "^4.3.0"
},
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/d3-contour": "^1.3.0",
"@types/fs-extra": "^8.1.0",
"@types/mocha": "^7.0.2",
"@types/node": "^12.12.31",
"chai": "^4.2.0",
"cpy-cli": "^2.0.0",
"mocha": "^7.1.1",
"ts-mockito": "^2.5.0",
"ts-node": "^8.8.1",
"typescript": "^3.8.3"
},
"bugs": {
"url": "https://github.com/TNOCS/csWeb/issues"
},
"homepage": "https://github.com/TNOCS/csWeb"
}