-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
103 lines (103 loc) · 3.19 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
{
"name": "airboardgame",
"version": "2.0.2",
"private": false,
"dependencies": {
"@color2k/compat": "^1.0.0-rc.5",
"@react-hookz/web": "^22.0.0",
"@scripters/use-socket.io": "github:jrmi/use-socket.io#updated-v2",
"@sentry/react": "^6.18.2",
"@sentry/tracing": "^6.18.2",
"chota": "^0.8.0",
"color2k": "^1.0.0-rc.5",
"dayjs": "^1.10.4",
"diacritic": "0.0.2",
"eslint-config-airbnb": "^19.0.4",
"final-form": "^4.20.0",
"final-form-arrays": "^3.0.2",
"i18next": "^22.5.0",
"i18next-browser-languagedetector": "^7.0.1",
"jszip": "^3.10.1",
"lodash.debounce": "^4.0.8",
"marked": "^4.0.12",
"memoizee": "^0.4.14",
"mime-types": "^2.1.35",
"nanoid": "^3.3.0",
"openvidu-browser": "^2.26.0",
"p-limit": "^4.0.0",
"probe-image-size": "^7.2.3",
"randomcolor": "^0.5.4",
"rc-slider": "^9.7.2",
"react": "^18.2.0",
"react-color": "^2.19.3",
"react-confirm-alert": "^2.6.1",
"react-dom": "^18.2.0",
"react-dropzone": "^14.2.3",
"react-final-form": "^6.5.9",
"react-final-form-arrays": "^3.1.4",
"react-full-screen": "^1.1.1",
"react-i18next": "^12.3.1",
"react-icons": "^4.8.0",
"react-query": "^3.39.3",
"react-router-dom": "^6.8.0",
"react-sync-board": "^1.2.6",
"react-toastify": "^6.1.0",
"recoil": "^0.7.4",
"socket.io-client": "^4.1.2",
"styled-components": "^5.3.5",
"use-async-effect": "^2.2.7",
"x2js": "^3.4.4"
},
"scripts": {
"dev": "vite",
"start": "npm run dev -- --open",
"build": "vite build",
"serve": "vite preview --open --port=5000",
"serve:ci": "vite preview --port=5000",
"lint": "eslint src/",
"prettier": "prettier --write src/",
"check": "node ./checkConfig.mjs",
"server": "echo 'This command is deprecated. Please, see Readme for more information.'",
"i18n:scanner": "i18next-scanner --config i18next-scanner.config.js 'src/**/*.{js,jsx}'",
"cypress:open": "cross-env VITE_CI=1 LANGUAGE=en cypress open",
"cypress:run": "cross-env VITE_CI=1 LANGUAGE=en cypress run",
"version": "git changelog -n -t $npm_package_version && git add CHANGELOG.md"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/cli": "^7.14.3",
"@babel/core": "^7.14.3",
"@babel/node": "^7.14.2",
"@babel/preset-env": "^7.14.4",
"@testing-library/jest-dom": "^5.12.0",
"@testing-library/react": "^11.2.7",
"@testing-library/user-event": "^13.1.9",
"@vitejs/plugin-react-refresh": "^1.3.3",
"@welldone-software/why-did-you-render": "^7.0.1",
"cross-env": "^7.0.3",
"cypress": "^7.1.0",
"dotenv": "^10.0.0",
"eslint": "^7.27.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.6.0",
"http-proxy-middleware": "^2.0.0",
"i18next-scanner": "^4.2.0",
"prettier": "2.0.5",
"rollup-plugin-analyzer": "^4.0.0",
"vite": "^4.3.5",
"wait-on": "^5.3.0"
}
}