-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.23 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
{
"name": "radar",
"version": "1.0.0",
"description": "Macaw Interactive technology radars",
"main": "index.js",
"scripts": {
"convert": "npm-run-all --parallel convert:*",
"dev:frontend": "npm-run-all --parallel watchconvert:frontend serveCsv chrome:frontend",
"watchconvert:frontend": "chokidar frontend.yaml -c \"node yaml2csv.js -i frontend.yaml -o frontend.csv\"",
"chrome:frontend": "node startRadarWithCsv.js --csv frontend.csv --port 664",
"convert:frontend": "node yaml2csv.js -i frontend.yaml -o frontend.csv",
"serveCsv": "node serveCsv --port 664",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/macaw-interactive/radar.git"
},
"keywords": [
"Technology",
"Radar"
],
"author": "Macaw Interactive",
"license": "ISC",
"bugs": {
"url": "https://github.com/macaw-interactive/radar/issues"
},
"homepage": "https://github.com/macaw-interactive/radar#readme",
"dependencies": {
"chokidar-cli": "^1.2.1",
"express": "^4.16.4",
"js-yaml": "^3.12.0",
"jsonexport": "^2.3.0",
"minimist": "^1.2.0",
"ngrok": "^3.1.0",
"npm-run-all": "^4.1.5",
"start-chrome": "0.0.3"
}
}