-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.38 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
{
"name": "octo-call",
"private": true,
"version": "0.2.0",
"type": "module",
"scripts": {
"start": "npm run dev",
"dev": "vite",
"dev:host": "vite --host",
"build": "tsc && vite build",
"deploy": "npm run build && firebase deploy",
"deploy:hosting": "npm run build && firebase deploy --only hosting",
"deploy:firestore": "firebase deploy --only firestore",
"deploy:functions": "firebase deploy --only functions",
"test": "jest --coverage --silent=true",
"test:verbose": "jest --coverage --silent=false",
"test:watch": "jest --watch",
"lint": "eslint src --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"types": "tsc --noEmit",
"preview": "vite preview"
},
"dependencies": {
"@emotion/react": "^11.11.0",
"@emotion/styled": "^11.11.0",
"@mui/icons-material": "^5.11.16",
"@mui/material": "^5.13.0",
"@reduxjs/toolkit": "^1.9.5",
"firebase": "^9.20.0",
"lodash.debounce": "^4.0.8",
"lodash.get": "^4.4.2",
"lodash.once": "^4.1.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-redux": "^8.0.5",
"uuid": "^9.0.0",
"webrtc-adapter": "^8.2.2",
"wouter": "^2.10.1"
},
"devDependencies": {
"@babel/preset-env": "^7.21.4",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.21.4",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/lodash.debounce": "^4.0.7",
"@types/lodash.get": "^4.4.7",
"@types/lodash.once": "^4.1.7",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@types/uuid": "^9.0.1",
"@typescript-eslint/eslint-plugin": "^5.57.1",
"@typescript-eslint/parser": "^5.57.1",
"@vitejs/plugin-basic-ssl": "^1.0.1",
"@vitejs/plugin-react": "^4.0.0-beta.0",
"eslint": "^8.38.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.3.4",
"identity-obj-proxy": "^3.0.0",
"install": "^0.13.0",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"typescript": "^5.0.2",
"vite": "^4.3.0"
},
"jest": {
"testEnvironment": "jsdom",
"setupFilesAfterEnv": [
"./jest-setup.js"
],
"moduleNameMapper": {
"\\.(png|pdf|svg|jpg|jpeg)$": "<rootDir>/src/testing-helpers/fileMock.ts",
"\\.(css|less)$": "identity-obj-proxy"
}
}
}