This repository was archived by the owner on Oct 11, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.6 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.6 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
{
"name": "video-matrix",
"version": "0.0.1",
"license": "MIT",
"author": "byslin",
"keywords": [
"decklink",
"umi",
"electron"
],
"scripts": {
"start": "umi dev",
"build": "umi build",
"postinstall": "umi generate tmp",
"prettier": "prettier --write '**/*.{js,jsx,tsx,ts,less,md,json}'",
"test": "umi-test",
"test:coverage": "umi-test --coverage",
"rebuild-deps": "electron-builder install-app-deps",
"electron:init": "umi electron init",
"electron:dev": "umi dev electron",
"electron:build:win": "umi build electron --win",
"electron:build:mac": "umi build electron --mac",
"electron:build:linux": "umi build electron --linux"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,jsx,less,md,json}": [
"prettier --write"
],
"*.ts?(x)": [
"prettier --parser=typescript --write"
]
},
"dependencies": {
"@ant-design/pro-layout": "^6.26.2",
"@byslin/macadam": "^2.0.14",
"@szhsin/react-menu": "^1.11.0",
"add": "^2.0.6",
"ahooks": "^2.10.11",
"query-string": "^7.0.1",
"react": "17.x",
"react-dom": "17.x",
"react-player": "^2.9.0",
"umi": "^3.5.20"
},
"devDependencies": {
"@types/node": "^14.6.2",
"@types/react": "^17.0.27",
"@types/react-dom": "^17.0.9",
"@umijs/preset-react": "1.x",
"@umijs/test": "^3.5.20",
"electron": "^15.1.2",
"electron-builder": "^22.13.1",
"lint-staged": "^11.2.3",
"prettier": "^2.4.1",
"typescript": "^4.4.3",
"umi-plugin-electron-builder": "^2.1.10",
"yorkie": "^2.0.0"
}
}