-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 1.8 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
{
"name": "developer-leaderboard",
"private": true,
"proxy": {
"/api/jira": {
"target": "https://sightview.atlassian.net/",
"changeOrigin": true
}
},
"type": "module",
"version": "0.0.0",
"main": "main.cjs",
"scripts": {
"dev": "vite",
"build": "vite build",
"serve": "node middleware.cjs --trace-deprecation",
"start": "electron ."
},
"build": {
"appId": "com.yourapp.id",
"files": [
"dist/**/*",
"main.cjs",
"preload.js"
],
"directories": {
"buildResources": "build"
}
},
"dependencies": {
"@reduxjs/toolkit": "^2.4.0",
"axios": "^1.7.7",
"date-fns": "^3.3.1",
"dotenv": "^16.4.5",
"express": "^4.21.1",
"html2canvas": "^1.4.1",
"http-proxy-middleware": "^3.0.3",
"lucide-react": "^0.344.0",
"react": "^18.3.1",
"react-chartjs-2": "^5.2.0",
"react-datepicker": "^7.5.0",
"react-dom": "^18.3.1",
"react-icons": "^5.3.0",
"react-redux": "^9.1.2",
"react-router-dom": "^6.28.0",
"react-select": "^5.8.3",
"react-switch": "^7.0.0",
"react-toggle": "^4.1.3",
"react-tooltip": "^5.28.0",
"recharts": "^2.12.2"
},
"devDependencies": {
"@eslint/js": "^9.14.0",
"@headlessui/react": "^2.2.0",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@types/react-icons": "^3.0.0",
"@types/react-toggle": "^4.0.5",
"@vitejs/plugin-react": "^4.3.3",
"autoprefixer": "^10.4.18",
"electron": "^26.1.0",
"electron-builder": "^25.1.8",
"eslint": "^9.9.1",
"eslint-plugin-react-hooks": "^5.1.0-rc.0",
"eslint-plugin-react-refresh": "^0.4.11",
"globals": "^15.9.0",
"postcss": "^8.4.35",
"tailwindcss": "^3.4.1",
"typescript": "^5.6.3",
"typescript-eslint": "^8.3.0",
"vite": "^5.4.11"
}
}