forked from first-australia/tournament-in-a-box
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 2.25 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "Tournament-in-a-Box",
"main": "public/electron.js",
"author": {
"name": "Fred Westling",
"email": "[email protected]"
},
"license": "MIT",
"description": "Everything you need to run a FIRST LEGO League tournament, in one convenient location!",
"version": "20.0.3",
"private": true,
"devDependencies": {
"@rescripts/cli": "^0.0.10",
"@rescripts/rescript-env": "^0.0.10",
"concurrently": "^4.1.0",
"electron": "^5.0.0",
"electron-builder": "^20.39.0",
"wait-on": "^3.2.0"
},
"dependencies": {
"bootstrap": "^4.1.0",
"electron-is-dev": "^1.1.0",
"fibers": "^5.0.0",
"file-saver": "^2.0.1",
"gh-pages": "^2.0.1",
"jquery": "^3.5.1",
"jszip": "^3.2.1",
"pdfmake": "^0.1.36",
"pptxgenjs": "^2.5.0",
"react": "^16.3.1",
"react-datasheet": "^1.3.4",
"react-dom": "^16.3.1",
"react-html-id": "^0.1.2",
"react-icons": "^2.2.7",
"react-popper": "^0.10.1",
"react-scripts": "^3.4.3",
"react-toggle-button": "^2.2.0",
"react-tooltip": "^3.8.4",
"react-transition-group": "^2.3.0",
"reactstrap": "^5.0.0-beta.3",
"sass": "^1.26.10",
"short-unique-id": "^1.1.1",
"smalltalk": "^3.3.0",
"typescript": "^4.0.2",
"webpack-dev-server": "^3.11.0"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"predeploy": "npm run build",
"deploy": "gh-pages -d build",
"preelectron-pack": "yarn build",
"electron-pack": "build -wl"
},
"build": {
"appId": "com.fwestling.electron-first",
"asar": true,
"files": [
"build/**/*",
"node_modules/**/*"
],
"directories": {
"buildResources": "assets"
},
"linux": {
"target": [
"AppImage",
"deb"
],
"icon": "build/icon.icns"
},
"win": {
"target": [
"NSIS",
"portable"
],
"icon": "build/icon.ico"
}
},
"homepage": "./",
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}