-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
117 lines (117 loc) · 3.76 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "@meetrix/webrtc-monitoring-dashboard",
"version": "1.1.0",
"private": true,
"dependencies": {
"@date-io/date-fns": "^1.3.13",
"@emotion/react": "^11.4.1",
"@emotion/styled": "^11.3.0",
"@meetrix/lib-monitoring": "git+https://github.com/meetrix/lib-monitoring",
"@meetrix/webrtc-monitoring-common-lib": "git+https://github.com/meetrix/webrtc-monitoring-common-lib.git",
"@mui/icons-material": "^5.0.3",
"@mui/lab": "^5.0.0-alpha.50",
"@mui/material": "^5.2.5",
"@mui/styles": "^5.2.3",
"@mui/x-data-grid": "^5.6.1",
"@mui/x-date-pickers": "^5.0.0-alpha.7",
"@peermetrics/webrtc-stats": "git+https://github.com/buddhikajay/webrtc-stats.git",
"@reduxjs/toolkit": "^1.8.1",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.3.2",
"@testing-library/user-event": "^7.1.2",
"@types/jest": "^24.0.0",
"@types/node": "^12.0.0",
"axios": "^0.24.0",
"date-fns": "^2.28.0",
"debug": "^4.3.3",
"moment": "^2.29.3",
"qs": "^6.10.2",
"react": "^17.0.2",
"react-ga": "^3.3.1",
"react-google-charts": "^4.0.0",
"react-gtm-module": "^2.0.11",
"react-moment": "^1.1.2",
"react-router-dom": "^6.2.1",
"react-scripts": "5.0.1",
"recharts": "^2.1.9",
"socket.io-client": "^4.4.0",
"ts-node": "^10.9.1",
"typescript": "~4.1.5",
"uuid": "^8.3.2"
},
"scripts": {
"start": "npm run envconfig && DISABLE_ESLINT_PLUGIN=true react-scripts start",
"build": "DISABLE_ESLINT_PLUGIN=true react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"storybook": "start-storybook -p 6006 -s public",
"build-storybook": "build-storybook -s public",
"format": "prettier --write ./*",
"lint": "eslint --fix",
"envconfig": "ts-node env.mjs"
},
"eslintConfig": {
"overrides": [
{
"files": [
"**/*.stories.*"
],
"rules": {
"import/no-anonymous-default-export": "off"
}
}
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@storybook/addon-actions": "^6.2.9",
"@storybook/addon-essentials": "^6.2.9",
"@storybook/addon-links": "^6.2.9",
"@storybook/node-logger": "^6.2.9",
"@storybook/preset-create-react-app": "^3.1.7",
"@storybook/react": "^6.2.9",
"@types/debug": "^4.1.7",
"@types/react": "^17.0.0",
"@types/react-dom": "^16.9.12",
"@types/react-gtm-module": "^2.0.1",
"@types/react-redux": "^7.1.24",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^4.26.1",
"@typescript-eslint/parser": "^4.26.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.1",
"eslint-plugin-react-hooks": "^5.0.0-next-4f8ffec45-20230115",
"husky": "^6.0.0",
"lint-staged": "^10.5.4",
"moxios": "^0.4.0",
"prettier": "2.2.1",
"react-dom": "^17.0.2",
"react-redux": "^7.2.8"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"description": "## Development",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://gitlab.com/meetrix/general/project-templates/react-redux-toolkit-typescript.git"
},
"author": "Buddhika Jayawardhana",
"license": "ISC",
"bugs": {
"url": "https://gitlab.com/meetrix/general/project-templates/react-redux-toolkit-typescript/issues"
},
"homepage": "https://gitlab.com/meetrix/general/project-templates/react-redux-toolkit-typescript#readme"
}