-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.27 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.27 KB
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
{
"name": "eventrix-tools",
"version": "2.0.0",
"description": "Eventrix devtools",
"main": "index.js",
"private": true,
"scripts": {
"test": "jest",
"start": "vite",
"build": "vite build"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
"@vitejs/plugin-react-swc": "^3.3.2",
"eslint": "^8.45.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.3",
"sass": "^1.68.0",
"vite": "^4.4.5"
},
"jest": {
"verbose": true,
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*.{js,jsx}"
],
"moduleDirectories": [
"src/",
"node_modules/"
],
"coveragePathIgnorePatterns": [
"./src/mocks/",
"./node_modules/",
"index.js"
]
},
"dependencies": {
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@iconify/react": "^4.1.1",
"@mui/material": "^5.14.3",
"classnames": "^2.3.2",
"eventrix": "^2.9.1",
"lodash": "^4.17.21",
"moment": "^2.29.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-inspector": "^6.0.2",
"react-router": "^6.3.0",
"react-router-dom": "^6.3.0"
}
}