-
-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
74 lines (74 loc) · 2.25 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
{
"name": "mooz",
"version": "2.0.0",
"private": true,
"engines": {
"node": ">=16"
},
"dependencies": {
"@fluentui/react": "^8.110.10",
"@fluentui/theme": "^2.6.34",
"@testing-library/jest-dom": "^5.11.8",
"@testing-library/react": "^11.2.3",
"@testing-library/user-event": "^12.6.0",
"fscreen": "^1.2.0",
"nanoid": "^3.1.20",
"process": "^0.11.10",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-scripts": "^5.0.1",
"react-toastify": "^9.1.3",
"simple-peer": "^9.11.1",
"socket.io-client": "^4.7.1",
"web-vitals": "^0.2.4",
"webrtc-adapter": "^8.2.3",
"zustand": "^4.4.0"
},
"scripts": {
"set_env": "REACT_APP_VERSION=$npm_package_version REACT_APP_NAME=$npm_package_name",
"dev": "npm run set_env craco start",
"build": "npm run format && npm run lint && npm run set_env craco build",
"format": "prettier --write src",
"lint": "eslint src"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@craco/craco": "^7.1.0",
"@craco/types": "^7.1.0",
"@types/fscreen": "^1.0.1",
"@types/jest": "^26.0.20",
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
"@types/simple-peer": "^9.11.5",
"@typescript-eslint/eslint-plugin": "^6.1.0",
"@typescript-eslint/parser": "^6.1.0",
"eslint": "^8.45.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.33.0",
"eslint-plugin-react-hooks": "^4.6.0",
"prettier": "^3.0.0",
"react-app-alias": "^2.2.2",
"typescript": "^5.1.6"
}
}