-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
46 lines (46 loc) · 1.37 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
{
"name": "puppetcam",
"version": "0.0.1",
"description": "Capture all automated actions in a browser and export as a video",
"scripts": {
"start": "rm -f /tmp/.X*-lock && yarn build && node dist/server.js",
"build_extension": "webpack --config src/chrome_extension/webpack.config.js",
"build_public": "webpack --config src/public/webpack.config.js",
"build_express": "tsc --build src/tsconfig.json",
"build": "yarn build_express && yarn build_public && yarn build_extension",
"prod": "rm -f /tmp/.X*-lock && node dist/server.js"
},
"keywords": [
"record",
"chrome",
"puppeteer",
"screencast"
],
"license": "MIT",
"dependencies": {
"aws-sdk": "^2.673.0",
"body-parser": "^1.19.0",
"express": "^4.17.1",
"puppeteer-core": "3.0.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"twilio-video": "^2.3.0",
"xvfb": "0.3.0"
},
"devDependencies": {
"@types/chrome": "^0.0.106",
"@types/dom-mediacapture-record": "^1.0.4",
"@types/express": "^4.17.6",
"@types/node": "^13.13.4",
"@types/puppeteer-core": "^2.0.0",
"@types/react": "^16.9.34",
"@types/react-dom": "^16.9.7",
"@types/twilio-video": "^2.0.12",
"copy-webpack-plugin": "^5.1.1",
"ts-loader": "^7.0.2",
"tslint": "^6.1.2",
"typescript": "^3.8.3",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11"
}
}