forked from NarrativeScience-old/log.io
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.51 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
{
"name": "fluidfox",
"description": "Realtime log monitoring in your browser",
"version": "1.0.3",
"author": "Marc 'Fox' Salva Montaner <[email protected]>",
"bin": "dist/index.js",
"license": "MIT",
"repository": {
"type": "git",
"url": "[email protected]:SrZorro/FluidFox.git"
},
"files": [
"/dist"
],
"scripts": {
"dev": "npm-run-all --parallel server:watch harvester:watch web:watch",
"server:watch": "nodemon dist/index.js server conf/server.json",
"harvester:watch": "nodemon dist/index.js harvester conf/harvester.json",
"web:watch": "nodemon dist/index.js web conf/web.json",
"build:watch": "concurrently \"tsc --watch\" \"webpack --mode=development --watch --display-error-details\"",
"build": "concurrently \"tsc\" \"webpack --mode=production\""
},
"dependencies": {
"ajv": "^6.10.2",
"chokidar": "^3.0.2",
"commander": "^3.0.0",
"debug": "^4.1.1",
"events": "^3.0.0",
"express": "^4.17.1",
"uuid": "^3.3.2",
"ws": "^7.1.2"
},
"devDependencies": {
"@types/debug": "^4.1.5",
"@types/node": "^12.7.1",
"@types/ws": "^6.0.2",
"concurrently": "^4.1.1",
"html-webpack-plugin": "^3.2.0",
"inferno": "^7.3.0",
"inferno-mobx": "^7.3.0",
"mobx": "^5.13.0",
"nodemon": "^1.19.1",
"npm-run-all": "^4.1.5",
"ts-loader": "^6.0.4",
"ts-transform-inferno": "^4.0.2",
"tslint": "^5.18.0",
"typescript": "^3.5.3",
"typestyle": "^2.0.4",
"webpack": "^4.39.2",
"webpack-cli": "^3.3.6"
}
}