This repository has been archived by the owner on Aug 30, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
75 lines (75 loc) · 2.45 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
{
"name": "meetbot",
"description": "A helper bot for Google Meet that makes meetings frictionless.",
"homepage": "https://github.com/balena-io-playground/meetbot",
"main": "build/index.js",
"types": "build/index.d.ts",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/balena-io-playground/meetbot.git"
},
"bugs": {
"url": "https://github.com/balena-io-playground/meetbot/issues"
},
"scripts": {
"clean": "rimraf build",
"build": "npm run clean && tsc && npm run build:ui && cp -r src/stenographer build/stenographer",
"build:ui": "vite build",
"lint": "balena-lint --typescript src tests",
"lint-fix": "balena-lint --typescript --fix src tests",
"test": "npm run build && npm run lint && npm run test:node && npm run test:browser",
"test:fast": "npm run build && npm run test:node",
"prepack": "npm run build",
"start": "npm run build && node -r dotenv/config build/index.js",
"start:prod": "node -r dotenv/config build/index.js",
"watch": "nodemon --watch src --ext js,ts,json --exec node -r ts-node/register/transpile-only src/index.ts",
"serve:ui": "vite preview --port 3000",
"dev-ui": "vite"
},
"devDependencies": {
"@balena/lint": "^5.4.2",
"@types/express": "^4.17.13",
"@types/luxon": "^2.0.5",
"@types/mocha": "^8.2.2",
"@types/moment": "^2.13.0",
"@types/node": "^16.10.3",
"@types/totp-generator": "0.0.2",
"husky": "^4.2.5",
"lint-staged": "^11.0.0",
"rimraf": "^3.0.2",
"ts-node": "^9.1.1",
"typescript": "^4.2.4",
"vite-plugin-babel-macros": "^1.0.5",
"@types/faker": "^5.5.9",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@vitejs/plugin-react": "^1.0.0",
"vite": "^2.6.4",
"vite-plugin-svgr": "^0.4.0"
},
"dependencies": {
"axios": "^0.24.0",
"comment-parser": "^1.3.0",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"faker": "^5.5.3",
"googleapis": "^88.2.0",
"luxon": "^2.0.2",
"miragejs": "^0.1.42",
"moment": "^2.29.1",
"puppeteer": "^10.4.0",
"puppeteer-extra": "^3.2.3",
"puppeteer-extra-plugin-stealth": "^2.8.2",
"react": "^17.0.0",
"react-dom": "^17.0.0",
"react-query": "^3.28.0",
"react-router-dom": "^5.3.0",
"react-toastify": "^8.0.3",
"rendition": "^21.9.2",
"styled-components": "^5.3.3",
"styled-reset": "^4.3.4",
"totp-generator": "^0.0.10",
"with-query": "^1.3.0"
}
}