-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.24 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.24 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
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
{
"name": "edge-ml_frontend",
"version": "0.1.0",
"private": true,
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.5.2",
"@fortawesome/free-brands-svg-icons": "^6.6.0",
"@fortawesome/free-regular-svg-icons": "^6.2.1",
"@fortawesome/free-solid-svg-icons": "^6.5.2",
"@fortawesome/react-fontawesome": "^0.2.0",
"@popperjs/core": "^2.11.8",
"axios": "^1.6.5",
"bootstrap": "^5.3.3",
"classnames": "^2.2.6",
"highcharts": "^11.4.3",
"highcharts-react-official": "^3.2.1",
"humanize-duration": "^3.28.0",
"immer": "^10.1.1",
"jszip": "^3.9.1",
"jwt-decode": "^4.0.0",
"lint-staged": "^15.2.5",
"playwright": "^1.44.1",
"prismjs": "^1.24.0",
"react": "^18.2.0",
"react-color": "^2.19.3",
"react-dom": "^18.2.0",
"react-router-dom": "^6.22.3",
"react-select": "^5.2.2",
"reactstrap": "^9.2.2",
"unique-names-generator": "^4.7.1",
"zustand": "^4.5.2"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --single-quote --write"
]
},
"scripts": {
"start": "vite",
"build": "vite build",
"serve": "vite preview",
"lint": "eslint src/**/*.{js,jsx}",
"lint:fix": "eslint src/**/*.{js,jsx} --fix",
"format": "prettier --write \"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}\""
},
"jest": {
"collectCoverageFrom": [
"src/components/**/*.{js}",
"src/routes/**/*.{js}",
"src/services/**/*.{js}",
"src/App.js",
"src/AppContent.js"
]
},
"devDependencies": {
"@eslint/js": "^9.6.0",
"@playwright/test": "^1.44.0",
"@types/node": "^20.12.12",
"@vitejs/plugin-react": "^4.3.0",
"enzyme": "^3.11.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.3",
"globals": "^15.8.0",
"nodemon": "^3.0.3",
"prettier": "^3.3.2",
"sass": "^1.77.4",
"vite": "^5.2.11"
},
"nodemonConfig": {
"ignore": [
"config/"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}