forked from streamwall/streamwall
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.64 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
{
"name": "streamwall",
"version": "0.0.1",
"description": "View streams in a grid",
"main": "src/index.js",
"scripts": {
"build": "webpack",
"start": "npm run build -- --display=errors-only && electron dist",
"start-local": "npm run build -- --display=errors-only && electron dist --webserver=http://localhost:4444 --username=woke --password=woke",
"test": "jest"
},
"author": "Max Goodhart <[email protected]>",
"license": "MIT",
"dependencies": {
"csvtojson": "^2.0.10",
"ejs": "^3.1.3",
"electron": "^9.0.4",
"google-spreadsheet": "^3.0.11",
"koa": "^2.12.1",
"koa-basic-auth": "^4.0.0",
"koa-easy-ws": "^1.1.3",
"koa-route": "^3.2.0",
"koa-static": "^5.0.0",
"koa-views": "^6.3.0",
"lodash": "^4.17.15",
"mousetrap": "^1.6.5",
"node-fetch": "^2.6.0",
"node-simple-cert": "0.0.1",
"preact": "^10.4.4",
"reconnecting-websocket": "^4.4.0",
"styled-components": "^5.1.1",
"svg-loaders-react": "^2.2.1",
"xstate": "^4.10.0",
"yargs": "^15.3.1"
},
"devDependencies": {
"@babel/core": "^7.10.2",
"@babel/plugin-proposal-optional-chaining": "^7.10.1",
"@babel/plugin-transform-react-jsx": "^7.10.1",
"@babel/preset-env": "^7.10.2",
"@svgr/webpack": "^5.4.0",
"babel-jest": "^26.0.1",
"babel-loader": "^8.1.0",
"babel-plugin-styled-components": "^1.10.7",
"copy-webpack-plugin": "^6.0.2",
"css-loader": "^3.6.0",
"file-loader": "^6.0.0",
"jest": "^26.0.1",
"prettier": "2.0.5",
"style-loader": "^1.2.1",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11"
},
"browserslist": [
"electron 9.0"
]
}