-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.06 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 2.06 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
{
"name": "cnc-controller",
"version": "0.1.1",
"description": "Electron app for running CNC jobs (GRBL G-Code)",
"private": true,
"build": {
"appId": "wireless-cnc.controller.app",
"productName": "Wireless CNC Controller",
"copyright": "glebka@users.noreply.github.com",
"asar": true,
"directories": {
"output": "dist"
},
"files": [
"package.json",
"app/dist/**/*"
],
"win": {
"target": "nsis",
"icon": "build/milling-machine.png",
"artifactName": "cnc-controller-setup.${ext}"
}
},
"scripts": {
"clean": "rm -rf ui/dist/ && rm -rf node_modules/.vite",
"start:web": "cd ui/ && vite -m development",
"build:web": "cd ui/ && tsc -p ./src/tsconfig.json && vite build --emptyOutDir",
"build:web:dev": "cd ui/ && tsc -p ./src/ui/tsconfig.json && vite build -m development",
"build:app": "tsc -p ./app/tsconfig.json",
"start:app": "bash ./scripts/start-app.sh",
"test": "echo \"Error: no test specified\" && exit 1",
"pack:app": "cd ui/ && tsc -p ./src/tsconfig.json && vite build --emptyOutDir && cd .. && tsc -p ./app/tsconfig.json && electron-builder"
},
"main": "app/dist/app.js",
"author": "glebka@users.noreply.github.com",
"license": "MIT",
"dependencies": {
"bonjour-service": "^1.0.14",
"electron-log": "^4.4.8",
"electron-window-state": "^5.0.3",
"moment": "^2.29.4"
},
"devDependencies": {
"@reduxjs/toolkit": "^1.8.0",
"@types/node": "^18.11.13",
"@types/react": "^17.0.39",
"@types/react-dom": "^17.0.11",
"@types/styled-components": "^5.1.26",
"@vitejs/plugin-react": "^2.0.1",
"bootstrap": "^5.1.3",
"electron": "^22.0.0",
"electron-builder": "^23.6.0",
"env-cmd": "^10.1.0",
"inversify": "^6.0.1",
"react": "^17.0.2",
"react-bootstrap": "^2.1.2",
"react-dom": "^17.0.2",
"react-dropzone": "^12.1.0",
"react-icons": "^4.3.1",
"react-redux": "^7.2.6",
"reflect-metadata": "^0.1.13",
"styled-components": "^5.3.5",
"typescript": "^4.7.4",
"vite": "^3.0.7"
}
}