-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
66 lines (66 loc) · 2.28 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
{
"name": "niivue-desktop",
"productName": "Niivue",
"version": "0.3.1",
"description": "A medical image viewer with a focus on neuroimaging",
"main": "src/electron/index.js",
"scripts": {
"dev": "concurrently --kill-others \"npm run dev:ui\" \"electron-forge start -- --dev\"",
"dev:ui": "vite",
"build:ui": "vite build",
"start": "npm run build:ui && electron-forge start",
"package": "npm run build:ui && electron-forge package",
"make:linux": "npm run build:ui && electron-forge make --platform=linux --arch=x64 --enable-logging",
"make:macArm": "npm run build:ui && electron-forge make --platform=darwin --arch=arm64 --enable-logging",
"make:macIntel": "npm run build:ui && electron-forge make --platform=darwin --arch=x64 --enable-logging",
"publish": "electron-forge publish",
"lint": "echo \"No linting configured\"",
"test": "echo \"No tests configured\""
},
"keywords": [],
"author": {
"name": "Taylor Hanayik",
"email": "[email protected]"
},
"license": "BSD-2-Clause",
"dependencies": {
"@niivue/niimath": "^0.1.1",
"cors": "^2.8.5",
"electron-squirrel-startup": "^1.0.0",
"express": "^4.18.2",
"immutability-helper": "^3.1.1",
"minimist": "^1.2.8",
"react-color": "^2.19.3",
"react-dnd": "^16.0.1",
"react-dnd-html5-backend": "^16.0.1",
"uuidv4": "^6.2.13"
},
"devDependencies": {
"@electron-forge/cli": "^6.1.1",
"@electron-forge/maker-deb": "^6.1.1",
"@electron-forge/maker-rpm": "^6.1.1",
"@electron-forge/maker-squirrel": "^6.1.1",
"@electron-forge/maker-zip": "^6.1.1",
"@electron-forge/publisher-github": "^6.4.2",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@fontsource/roboto": "^5.0.8",
"@mui/icons-material": "^5.14.15",
"@mui/material": "^5.14.15",
"@niivue/niivue": "^0.43.7",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@vitejs/plugin-react": "^4.0.0",
"concurrently": "^8.2.1",
"electron": "24.4.0",
"eslint": "^8.38.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.3.4",
"prettier": "3.3.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"vite": "^4.3.2",
"vite-plugin-wasm": "^3.3.0"
}
}