-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
116 lines (116 loc) · 3.52 KB
/
Copy pathpackage.json
File metadata and controls
116 lines (116 loc) · 3.52 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
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
{
"license": "GPL-3.0-or-later",
"name": "laliga-fantasy-app",
"version": "3.4.1",
"description": "LaLiga Fantasy Application",
"author": "Externoak",
"private": true,
"dependencies": {
"@react-spring/web": "^9.7.5",
"@tanstack/query-sync-storage-persister": "^5.87.1",
"@tanstack/react-query": "^5.0.0",
"@tanstack/react-query-persist-client": "^5.87.1",
"adm-zip": "^0.5.16",
"axios": "^1.6.2",
"compression": "^1.7.4",
"cors": "^2.8.5",
"date-fns": "^2.30.0",
"dompurify": "^3.2.6",
"dotenv": "^17.2.1",
"electron-is-dev": "^3.0.1",
"express": "^4.21.2",
"express-rate-limit": "^7.0.0",
"helmet": "^7.0.0",
"http-proxy-middleware": "^3.0.5",
"lucide-react": "^0.292.0",
"morgan": "^1.10.0",
"puppeteer": "^24.19.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hot-toast": "^2.4.1",
"react-router-dom": "^6.20.0",
"recharts": "^2.10.0",
"zustand": "^4.4.7"
},
"main": "main.js",
"homepage": ".",
"scripts": {
"analyze:explore": "npm run build && npx source-map-explorer \"build/static/js/*.js\" --html build/sme-report.html --json build/sme-report.json",
"start": "craco start",
"build": "craco build",
"test": "craco test",
"eject": "react-scripts eject",
"server": "cross-env APP_PORT=3005 node server/index.js",
"appapp": "cross-env PORT=3006 craco start",
"dev": "concurrently \"npm run server\" \"npm run appapp\"",
"electron": "npm run build && electron .",
"electron:dev": "concurrently \"npm run server\" \"cross-env PORT=3006 npm start\" \"wait-on http://localhost:3006 && electron .\"",
"electron:pack": "npm run build && electron-builder",
"electron:dist": "npm run build && electron-builder --publish=never",
"build:electron": "npm run build && electron-builder --publish=never",
"build:full": "npm run build && electron-builder --win --publish=never",
"analyze": "npm run build && npx webpack-bundle-analyzer build/static/js/*.js --mode json --report bundle-report.json"
},
"devDependencies": {
"@craco/craco": "^7.1.0",
"@types/dompurify": "^3.0.5",
"autoprefixer": "^10.4.16",
"concurrently": "^9.2.1",
"cross-env": "^10.0.0",
"electron": "^37.4.0",
"electron-builder": "^26.0.12",
"eslint-plugin-unused-imports": "^4.2.0",
"framer-motion": "^10.18.0",
"postcss": "^8.4.32",
"react-scripts": "5.0.1",
"source-map-explorer": "^2.5.3",
"supertest": "^6.3.4",
"tailwindcss": "^3.3.6",
"wait-on": "^8.0.4",
"webpack-bundle-analyzer": "^4.10.1"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"build": {
"appId": "com.laliga.fantasy.app",
"productName": "LaLiga Fantasy App",
"directories": {
"output": "dist/LaLiga-Fantasy-App",
"buildResources": "build-resources"
},
"files": [
"build/**/*",
"main.js",
"node_modules/**/*",
"preload.js",
"server/**/*"
],
"asar": false,
"buildDependenciesFromSource": false,
"nodeGypRebuild": false,
"npmRebuild": false,
"artifactName": "LaLiga-Fantasy-App.${ext}",
"win": {
"target": [
{
"target": "dir",
"arch": [
"x64"
]
}
],
"icon": "build-resources/fantasy_logo_transparent.png"
},
"afterAllArtifactBuild": "scripts/post-build.js"
}
}