-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
118 lines (118 loc) · 3.13 KB
/
package.json
File metadata and controls
118 lines (118 loc) · 3.13 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
117
118
{
"name": "scpannotation",
"version": "0.1.0",
"description": "SCP Sample Annotation Wizard",
"author": "Alex Rothwell - Computational Biology Facility",
"private": true,
"homepage": ".",
"electron": "electron .",
"dist": "electron-builder",
"main": "main.js",
"type": "module",
"resolutions": {
"wrap-ansi": "7.0.0",
"string-width": "4.1.0"
},
"build": {
"appId": "com.example.scpannotation",
"productName": "SCP Sample Annotation Wizard",
"directories": {
"output": "dist",
"buildResources": [
"build"
],
"app": "build"
},
"files": [
"package.json",
"preload.js",
"data.json",
"craco.config.cjs",
"package-lock.json",
"main.js",
"force.config.cjs",
"!out",
"!processingpy"
]
},
"dependencies": {
"@electron/remote": "^2.1.2",
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.0",
"@fontsource/roboto": "^5.0.12",
"@mui/icons-material": "^5.15.13",
"@mui/material": "^5.15.11",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^13.5.0",
"concurrently": "^8.2.2",
"electron-is-dev": "^3.0.1",
"electron-json-storage": "^4.6.0",
"electron-log": "^5.1.2",
"electron-squirrel-startup": "^1.0.0",
"electron-store": "^8.2.0",
"file-system": "^2.2.2",
"jsonfile": "^6.1.0",
"modclean": "^3.0.0-beta.1",
"node-fetch": "^2.6.1",
"path": "^0.12.7",
"path-browserify": "^1.0.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.51.0",
"react-router-dom": "^6.22.3",
"react-scripts": "^5.0.1",
"sanitize-filename": "^1.6.3",
"temp-dir": "^3.0.0",
"wait-on": "^7.2.0",
"web-vitals": "^2.1.4"
},
"scripts": {
"_start": "react-scripts start",
"start:react": "craco start",
"start:electron": "electron .",
"start:forge": "electron-forge start",
"start": "concurrently \"npm run start:react\" \"wait-on http://localhost:3000/ && npm run start:forge\"",
"build": "craco build",
"test": "craco test",
"eject": "react-scripts eject",
"package": "electron-forge package",
"make": "electron-forge make",
"publish": "electron-forge publish"
},
"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"
]
},
"devDependencies": {
"@craco/craco": "^7.1.0",
"@electron-forge/cli": "^7.3.1",
"@electron-forge/maker-deb": "^7.3.1",
"@electron-forge/maker-rpm": "^7.3.1",
"@electron-forge/maker-squirrel": "^7.3.1",
"@electron-forge/maker-zip": "^7.3.1",
"@electron-forge/plugin-auto-unpack-natives": "^7.3.1",
"@electron-forge/plugin-fuses": "^7.3.1",
"electron": "^29.1.0",
"electron-is-dev": "^3.0.1",
"process": "^0.11.10",
"react-error-overlay": "^6.0.9"
},
"overrides": {
"react-error-overlay": "^6.0.9"
}
}