-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.84 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.84 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
87
88
89
{
"name": "helium",
"productName": "Helium IDE",
"version": "1.0.0",
"description": "My Electron application description",
"main": "./dist/main/main.js",
"scripts": {
"start": "npm-run-all -p start:react electron:serve",
"electron:serve": "wait-on http-get://localhost:4000/ && npm run dev:electron",
"dev:electron": "cross-env NODE_ENV=development webpack --config webpack/webpack.main.config.ts --mode=development && npm run start:electron",
"start:react": "cross-env NODE_ENV=development webpack serve --config webpack/webpack.renderer.config.ts --mode=development",
"start:electron": "electron .",
"lint": "eslint --ext .ts,.tsx ."
},
"devDependencies": {
"@eslint/js": "^9.1.1",
"@svgr/webpack": "^8.1.0",
"@types/command-exists": "^1.2.3",
"@types/fs-extra": "^11.0.4",
"@types/mime": "^3.0.1",
"@types/node": "^20.12.7",
"@types/react": "^18.2.79",
"@types/react-dom": "^18.2.25",
"@types/uuid": "^9.0.8",
"@types/wait-on": "^5.3.4",
"@vercel/webpack-asset-relocator-loader": "^1.7.3",
"concurrently": "^8.2.2",
"copy-webpack-plugin": "^12.0.2",
"core-js": "^3.37.1",
"cross-env": "^7.0.3",
"css-loader": "^7.1.1",
"electron": "30.0.1",
"eslint": "^8.57.0",
"fork-ts-checker-webpack-plugin": "^9.0.2",
"html-webpack-plugin": "^5.6.0",
"mini-css-extract-plugin": "^2.9.0",
"node-loader": "^2.0.0",
"npm-run-all": "^4.1.5",
"sass": "^1.75.0",
"sass-loader": "^14.2.1",
"style-loader": "^4.0.0",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"tsconfig-paths-webpack-plugin": "^4.1.0",
"typescript": "~5.4.5",
"typescript-eslint": "^7.7.0",
"typescript-plugin-css-modules": "^5.1.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4"
},
"keywords": [],
"author": {
"name": "Mitchell Mark-George",
"email": "mitchellmmarkgeorge@gmail.com"
},
"license": "MIT",
"dependencies": {
"@headlessui/react": "^2.1.2",
"@radix-ui/react-checkbox": "^1.1.0",
"@shikijs/monaco": "^1.22.0",
"bootstrap-icons": "^1.11.3",
"chokidar": "^3.6.0",
"class-variance-authority": "^0.7.0",
"classnames": "^2.5.1",
"command-exists": "^1.2.9",
"dotenv": "^16.4.7",
"electron-is-dev": "^3.0.1",
"electron-squirrel-startup": "^1.0.0",
"fs-extra": "^11.2.0",
"is-binary-path": "^2.1.0",
"is-image": "^4.0.0",
"is-text-path": "^2.0.0",
"junk": "^4.0.1",
"mobx": "^6.12.3",
"mobx-react-lite": "^4.0.7",
"monaco-editor": "^0.48.0",
"monaco-editor-webpack-plugin": "^7.1.0",
"pathe": "^1.1.2",
"react": "^18.3.1",
"react-bootstrap-icons": "^1.11.4",
"react-dom": "^18.3.1",
"react-icons": "^5.2.1",
"react-resizable-panels": "^2.0.19",
"shiki": "^1.22.0",
"sonner": "^1.7.1",
"uuid": "^9.0.1",
"wait-on": "^7.2.0"
}
}