-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.36 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.36 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
{
"name": "opus",
"version": "1.0.0",
"description": "",
"main": "./dist/main.js",
"scripts": {
"dev": "npm-run-all -p dev:react electron:serve",
"dev:electron": "cross-env NODE_ENV=development webpack --config webpack/electron.webpack.ts --mode=development && npm run start:electron",
"dev:react": "cross-env NODE_ENV=development webpack serve --config webpack/react.webpack.ts --mode=development",
"electron:serve": "wait-on http-get://localhost:4000/ && npm run dev:electron",
"start:electron": "electron .",
"build": "npm-run-all build:electron build:react",
"build:run": "npm-run-all build start:electron",
"build:electron": "webpack --config webpack/electron.webpack.ts --mode=production",
"build:react": "webpack --config webpack/react.webpack.ts --mode=production",
"package": "npm-run-all build package:dist",
"package:dist": "electron-builder --dir"
},
"keywords": [],
"author": "Mitchell Mark-George",
"license": "ISC",
"devDependencies": {
"@types/node": "^18.11.2",
"@types/react": "^18.0.21",
"@types/react-dom": "^18.0.6",
"@types/styled-components": "^5.1.26",
"@types/validator": "^13.7.8",
"@types/webpack-dev-server": "^4.7.2",
"@typescript-eslint/eslint-plugin": "^5.40.1",
"@typescript-eslint/parser": "^5.40.1",
"copy-webpack-plugin": "^11.0.0",
"cross-env": "^7.0.3",
"electron": "^21.2.0",
"electron-builder": "^23.6.0",
"eslint": "^8.25.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-react": "^7.31.10",
"html-webpack-plugin": "^5.5.0",
"mini-css-extract-plugin": "^2.6.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.7.1",
"ts-loader": "^9.4.1",
"ts-node": "^10.9.1",
"typescript": "^4.8.4",
"wait-on": "^6.0.1",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.11.1"
},
"dependencies": {
"@react-icons/all-files": "^4.1.0",
"nanoid": "^4.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-spinners": "^0.13.6",
"styled-components": "^5.3.6",
"validator": "^13.7.0",
"zustand": "^4.1.2"
},
"build": {
"appId": "com.company.app",
"productName": "Opus",
"mac": {
"category": "public.app-category.video"
},
"directories": {
"output": "packages"
},
"files": [
"package.json",
"dist/**"
]
}
}