-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
66 lines (66 loc) · 1.52 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
66
{
"name": "logcat-viewer",
"version": "1.1.0",
"description": "An User Friendly ADB Logcat Web Viewer",
"scripts": {
"start": "concurrently \"nodemon ./server\" \"parcel watch ./client/index.html\"",
"build": "parcel build ./client/index.html"
},
"bin": {
"logcat-ui": "./bin/logcat-ui.js"
},
"files": [
"dist",
"index.js",
"bin"
],
"keywords": [
"parcel",
"react",
"babel",
"fullstack",
"adb",
"logcat",
"logcat-viewer",
"android-debug",
"web-ui",
"react",
"node",
"express",
"fullstack"
],
"author": "Lex Martinez<[email protected]>",
"repository": {
"type": "git",
"url": "git+https://github.com/lexmartinez/logcat-viewer.git"
},
"bugs": {
"url": "https://github.com/lexmartinez/logcat-viewer/issues"
},
"homepage": "https://github.com/lexmartinez/logcat-viewer",
"license": "MIT",
"dependencies": {
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"concurrently": "^4.1.0",
"express": "^4.16.4",
"express-ws": "^4.0.0",
"global": "^4.3.2",
"open": "^6.0.0",
"websocket-stream": "^5.1.2"
},
"devDependencies": {
"autoprefixer": "^9.7.2",
"babel-core": "^6.26.3",
"eslint": "^4.19.1",
"eslint-plugin-react": "^7.7.0",
"node-sass": "^4.8.3",
"nodemon": "^1.18.10",
"parcel-bundler": "^1.6.2",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-websocket": "^2.0.1",
"semantic-ui-css": "^2.4.1",
"semantic-ui-react": "^0.85.0"
}
}