-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.91 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.91 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
{
"name": "marine-databaser",
"version": "1.0.2-beta",
"main": "dist-electron/main/index.js",
"description": "A cross-platform Electron application that allows marine biology researchers to categorize and analyze video, audio, and other files collected in the field entirely on device.",
"author": "Phillip Tran",
"license": "GPL-3.0",
"private": true,
"debug": {
"env": {
"VITE_DEV_SERVER_URL": "http://127.0.0.1:7777/"
}
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build && electron-builder --config electron-builder.json5",
"preview": "vite preview",
"pree2e": "vite build --mode=test",
"e2e": "playwright test",
"postinstall": "install-app-deps",
"lint": "eslint . --ext .ts,.tsx",
"lint:fix": "eslint . --ext .ts,.tsx --fix",
"build-mac": "tsc && vite build && electron-builder --mac --universal --config electron-builder.json5",
"build-linux": "tsc && vite build && electron-builder --linux --arm64 --x64 --armv7l --config electron-builder.json5",
"build-win": "tsc && vite build && electron-builder --win --x64 --ia32 --config electron-builder.json5"
},
"devDependencies": {
"@playwright/test": "^1.31.0",
"@types/colormap": "^2.3.4",
"@types/ffprobe-static": "^2.0.3",
"@types/fluent-ffmpeg": "^2.1.24",
"@types/mime-types": "^2.1.4",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@types/wavesurfer.js": "^6.0.12",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@vitejs/plugin-react": "^3.1.0",
"electron": "^23.1.1",
"electron-builder": "^24.13.3",
"eslint": "^8.56.0",
"eslint-config-standard-with-typescript": "^43.0.1",
"eslint-plugin-electron": "^7.0.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.33.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sass": "^1.58.3",
"typescript": "^4.9.5",
"vite": "^4.1.4",
"vite-electron-plugin": "^0.8.2",
"vite-plugin-electron": "^0.11.1",
"vite-plugin-electron-renderer": "^0.12.1"
},
"engines": {
"node": "^14.18.0 || >=16.0.0"
},
"dependencies": {
"@emotion/react": "^11.10.6",
"@emotion/styled": "^11.10.6",
"@fontsource/roboto": "^4.5.8",
"@mui/icons-material": "^5.14.1",
"@mui/material": "^5.14.1",
"@wavesurfer/react": "^1.0.4",
"colormap": "^2.3.2",
"ffmpeg-static": "^5.1.0",
"ffprobe-static": "^3.1.0",
"fluent-ffmpeg": "^2.1.2",
"fuse.js": "^6.6.2",
"mime-types": "^2.1.35",
"notistack": "^3.0.1",
"react-router-dom": "^6.8.2",
"react-virtuoso": "^4.1.0",
"sequelize": "^6.29.1",
"sqlite3": "^5.0.0",
"wavesurfer.js": "^7.6.4"
},
"build": {
"asarUnpack": [
"node_modules/ffmpeg-static/bin/${os}/${arch}/ffmpeg",
"node_modules/ffmpeg-static/index.js",
"node_modules/ffmpeg-static/package.json"
]
}
}