-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.07 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.07 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
{
"name": "monthly_challenge",
"version": "0.1.0",
"private": true,
"homepage": ".",
"dependencies": {
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.8.0",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^13.5.0",
"cors": "^2.8.5",
"express": "^5.1.0",
"morgan": "^1.10.1",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"react-scripts": "5.0.1",
"uuid": "^13.0.0",
"web-vitals": "^2.1.4"
},
"main": "electron/main.js",
"scripts": {
"start": "npx cross-env BROWSER=none react-scripts start",
"server": "nodemon server/index.js",
"dev": "npm run dev:electron",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"predeploy": "npm run build",
"deploy": "gh-pages -d build",
"electron": "npx wait-on -t 300000 http://localhost:3000 && npx cross-env ELECTRON_DEV=1 ELECTRON_START_URL=http://localhost:3000 electron . | cat",
"dev:electron": "concurrently \"npm run server\" \"npm start\" \"npm run electron\""
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"proxy": "http://localhost:4000",
"build": {
"appId": "com.leaflet.app",
"productName": "Leaflet",
"directories": {
"output": "dist"
},
"files": [
"build/**/*",
"electron/**/*",
"server/**/*",
"package.json"
],
"extraResources": [
{
"from": "server/data",
"to": "data",
"filter": ["**/*"]
}
],
"win": {
"target": ["nsis"],
"icon": "public/leaf.png"
}
},
"devDependencies": {
"concurrently": "^9.2.1",
"nodemon": "^3.1.10",
"gh-pages": "^6.2.0",
"cross-env": "^7.0.3",
"electron": "^31.3.0",
"electron-builder": "^25.1.8",
"wait-on": "^7.2.0"
}
}