-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
83 lines (83 loc) · 2.95 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
{
"name": "vonage-video-react-app",
"version": "1.0.1",
"description": "React reference application for the Vonage Video web client SDK.",
"private": true,
"workspaces": [
"backend",
"frontend",
"integration-tests"
],
"engines": {
"node": ">=22.x",
"npm": "9.x"
},
"scripts": {
"build": "yarn workspace frontend build",
"deploy-vcr": "yarn build && vcr deploy",
"dev": "yarn && yarn workspace frontend dev & yarn workspace backend dev",
"docs": "yarn workspace frontend docs",
"docs:watch": "yarn workspace frontend docs:watch",
"lint": "ESLINT_USE_FLAT_CONFIG=false yarn eslint . --ext .ts,.tsx",
"lint:filenames": "./scripts/lintFileNames.sh",
"lint:fix": "yarn prettier --write . && yarn lint --fix",
"postinstall": "husky",
"run-server": "yarn workspace backend start",
"start": "yarn workspace frontend build && yarn workspace backend start",
"start:backend": "yarn workspace backend dev",
"start:frontend": "yarn workspace frontend dev",
"test": "yarn test:backend && yarn test:frontend",
"test:backend": "yarn workspace backend test",
"test:backend:watch": "yarn workspace backend test:watch",
"test:frontend": "yarn workspace frontend test",
"test:frontend:watch": "yarn workspace frontend test:watch",
"test:integration": "yarn workspace integration-tests test",
"ts-check": "yarn ts-check:backend && yarn ts-check:frontend",
"test:integrationUpdateScreenshots": "yarn workspace integration-tests updateScreenshots",
"ts-check:backend": "yarn workspace backend ts-check",
"ts-check:frontend": "yarn workspace frontend ts-check"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Vonage/vonage-video-react-app.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/Vonage/vonage-video-react-app/issues"
},
"homepage": "https://github.com/Vonage/vonage-video-react-app#readme",
"devDependencies": {
"@cspell/eslint-plugin": "^8.14.4",
"@types/node": "^20.12.7",
"@typescript-eslint/eslint-plugin": "^7.7.1",
"@typescript-eslint/parser": "^7.7.1",
"eslint": "^8",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-filename-rules": "^1.3.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsdoc": "^48.8.3",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.1",
"eslint-plugin-react-refresh": "^0.4.6",
"husky": "^9.0.11",
"license-checker": "^25.0.1",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"typescript": "^5.4.5"
},
"resolutions": {
"wrap-ansi": "7.0.0",
"path-to-regexp": "^0.1.12",
"express": "^4.21.2",
"axios": "^1.7.8",
"cross-spawn": "^7.0.5",
"rollup": "^4.22.4",
"vite": "^5.4.12",
"nanoid": "^3.3.8"
}
}