-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
128 lines (128 loc) · 3.78 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "viman",
"version": "1.0.0",
"description": "Video Manager application.",
"engines": {
"node": ">=14.14 < 16"
},
"scripts": {
"postinstall": "simple-git-hooks",
"dev": "yarn dev:next",
"dev:next": "next app",
"dev:electron": "ttsc -p app/tsconfig.electron.json && electron .electron/main.js",
"prebuild": "rimraf build release && mkdir build",
"build": "yarn build:next && yarn build:electron",
"prebuild:next": "rimraf .next out",
"build:next": "next build app && next export && mkdirp build && mv out/* build",
"postbuild:next": "rimraf .next out",
"prebuild:electron": "ttsc -p app/tsconfig.electron.json --outDir build && node tools/build/create-package-json.js",
"build:electron": "electron-builder build --win --mac --x64",
"rebuild": "electron-rebuild -f -w sqlite3",
"reset": "rimraf .electron",
"debug:database": "sqlite3 .electron/.sqlite",
"lint": "yarn lint:css && yarn lint:js",
"lint:css": "stylelint -f verbose 'app/**/*.sass'",
"lint:js": "eslint --ext .ts,.tsx app",
"test": "echo \"Error: no test specified\" && exit 1"
},
"build": {
"appId": "com.github.adamay000.viman",
"productName": "viman",
"directories": {
"app": "build",
"output": "release"
},
"mac": {
"target": "dmg",
"extraResources": [
{
"from": "node_modules/ffmpeg-static/bin/darwin/x64"
},
{
"from": "node_modules/ffprobe-static/bin/darwin/x64"
}
]
},
"win": {
"target": "portable",
"asar": true,
"extraResources": [
{
"from": "node_modules/ffmpeg-static/bin/win32/x64"
},
{
"from": "node_modules/ffprobe-static/bin/win32/x64"
}
]
}
},
"author": "adamay000",
"license": "MIT",
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*.{ts,tsx}": "yarn lint:js",
"*.{sass}": "yarn lint:css"
},
"dependencies": {
"classnames": "^2.3.1",
"electron-is-dev": "^2.0.0",
"electron-window-state": "^5.0.3",
"eventemitter3": "^4.0.0",
"ffmpeg-static": "^3.0.0",
"ffprobe-static": "^3.0.0",
"fluent-ffmpeg": "^2.1.2",
"glob": "^7.2.0",
"is-electron": "^2.2.0",
"jimp": "^0.16.1",
"knex": "^0.21.19",
"lodash": "^4.17.15",
"next": "^10.2.3",
"objection": "^2.0.10",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-virtualized": "^9.22.3",
"reset-css": "^5.0.1",
"rimraf": "^3.0.2",
"sqlite3": "^4.1.1",
"stylelint-order": "^4.1.0",
"url-join": "^4.0.1"
},
"devDependencies": {
"@types/ffprobe-static": "^2.0.0",
"@types/fluent-ffmpeg": "^2.1.13",
"@types/jest": "^24.0.25",
"@types/lodash": "^4.14.149",
"@types/mkdirp": "^1.0.1",
"@types/node": "^14.14",
"@types/react": "^17.0.2",
"@types/react-virtualized": "^9.21.11",
"@types/rimraf": "^3.0.0",
"@types/url-join": "^4.0.0",
"@typescript-eslint/eslint-plugin": "^4.26.0",
"@typescript-eslint/parser": "^4.26.0",
"@zerollup/ts-transform-paths": "^1.7.9",
"devtron": "^1.4.0",
"dts-css-modules-loader": "^1.2.2",
"electron": "^7.1.7",
"electron-builder": "^22.11.7",
"electron-rebuild": "^1.8.8",
"eslint": "^7.28.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"fork-ts-checker-webpack-plugin": "^6.2.10",
"jest": "^24.9.0",
"lint-staged": "^9.5.0",
"prettier": "^2.3.1",
"sass": "^1.35.1",
"simple-git-hooks": "^2.5.1",
"stylelint": "^13.13.1",
"stylelint-config-recommended": "^5.0.0",
"stylelint-rscss": "^0.4.0",
"ttypescript": "^1.5.12",
"typescript": "^4.3.2"
}
}