-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
110 lines (110 loc) · 3.88 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "gato",
"version": "1.0.21",
"description": "On screen graphic and text overlays for live streaming",
"private": true,
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build:server": "webpack --config webpack.config.ts --config-name server",
"build:client": "webpack --config webpack.config.ts --config-name client",
"build:server:prod": "webpack --config webpack.config.ts --config-name server --env production",
"build:client:prod": "webpack --config webpack.config.ts --config-name client --env production",
"build:prod": "npm run build:server:prod; npm run build:client:prod",
"watch:server": "webpack --config webpack.config.ts --config-name server --env watch",
"watch:client": "webpack serve --config webpack.config.ts --config-name client",
"watch": "npm run watch:server & npm run watch:client",
"lint": "node_modules/eslint/bin/eslint.js -c .eslintrc.js ./ --ext '.ts,.tsx'",
"lint:fix": "node_modules/eslint/bin/eslint.js -c .eslintrc.js ./ --ext '.ts,.tsx' --fix",
"package": "npm run build:prod; cd dist/; node-deb --install-strategy copy -- server.js public"
},
"node_deb": {
"dependencies": "npm",
"entrypoints": {
"daemon": "server.js"
},
"user": "www-data",
"group": "www-data",
"maintainer": "David Furey <[email protected]>"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@babel/preset-react": "^7.12.10",
"@types/compression": "^1.7.0",
"@types/dom-mediacapture-record": "^1.0.7",
"@types/express": "^4.17.11",
"@types/git-revision-webpack-plugin": "^3.0.1",
"@types/less": "^3.0.2",
"@types/mini-css-extract-plugin": "^1.2.2",
"@types/node": "^14.14.22",
"@types/object-hash": "^1.3.4",
"@types/prismjs": "^1.16.3",
"@types/react": "^17.0.0",
"@types/react-beautiful-dnd": "^13.0.0",
"@types/react-dom": "^17.0.0",
"@types/react-redux": "^7.1.15",
"@types/webpack": "^4.41.26",
"@types/webpack-dev-server": "^3.11.2",
"@types/webpack-node-externals": "^2.5.0",
"@types/ws": "^7.4.0",
"@typescript-eslint/eslint-plugin": "^4.14.0",
"@typescript-eslint/parser": "^4.14.0",
"babel-loader": "^8.2.2",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^5.0.1",
"eslint": "^7.18.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.22.0",
"file-loader": "^6.2.0",
"git-revision-webpack-plugin": "^3.0.6",
"html-webpack-plugin": "^4.5.1",
"mini-css-extract-plugin": "^1.3.4",
"ncp": "^2.0.0",
"node-deb": "^0.10.7",
"source-map-loader": "^2.0.0",
"ts-loader": "^8.0.14",
"ts-node": "^9.1.1",
"typescript": "^4.1.3",
"webpack": "^5.15.0",
"webpack-cli": "^4.4.0",
"webpack-dev-server": "^3.11.2",
"webpack-node-externals": "^2.5.2",
"webpack-permissions-plugin": "^1.0.7"
},
"dependencies": {
"@giantmachines/redux-websocket": "^1.4.0",
"@types/array.prototype.flat": "^1.2.1",
"@types/mustache": "^4.1.0",
"@types/react-helmet": "^6.1.0",
"@types/uuid": "^8.3.0",
"array.prototype.flat": "^1.2.4",
"bootswatch": "^4.5.3",
"capture-website": "^1.4.0",
"compression": "^1.7.4",
"core-js": "^3.8.3",
"express": "^4.17.1",
"less": "^4.1.1",
"material-design-icons": "^3.0.1",
"mustache": "^4.1.0",
"normalizr": "^3.6.1",
"object-hash": "^2.1.1",
"path-browserify": "^1.0.1",
"prismjs": "^1.23.0",
"react": "^17.0.1",
"react-beautiful-dnd": "^13.0.0",
"react-bootstrap": "^1.4.3",
"react-dom": "^17.0.1",
"react-helmet": "^6.1.0",
"react-redux": "^7.2.2",
"react-simple-code-editor": "^0.11.0",
"redux": "^4.0.5",
"reselect": "^4.0.0",
"shallow-equal": "^1.2.1",
"typescript-is": "^0.17.1",
"uuid": "^8.3.2",
"ws": "^7.4.2"
}
}