This repository has been archived by the owner on Jun 21, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
138 lines (138 loc) · 4.46 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
129
130
131
132
133
134
135
136
137
138
{
"name": "circuitblocks",
"description": "A graphical programming interface that helps newbies get into embedded programming.",
"homepage": "https://circuitmess.com/",
"author": {
"email": "[email protected]",
"name": "CircuitMess"
},
"version": "1.10.0",
"main": "build/app.js",
"private": true,
"dependencies": {
"@grpc/proto-loader": "^0.5.2",
"@types/rimraf": "^3.0.0",
"dom-parser": "^0.1.6",
"electron-updater": "^4.2.0",
"fs-extra": "^8.1.0",
"google-protobuf": "^3.10.0-rc.1",
"grpc": "^1.23.3",
"js-yaml": "^3.13.1",
"lzma-native": "^4.0.5",
"node-localstorage": "^2.2.1",
"platform-folders": "^0.5.4",
"request": "^2.88.0",
"rimraf": "^3.0.2",
"serialport": "^9.0.0",
"sudo-prompt": "^9.2.1",
"universal-analytics": "^0.5.3",
"unzipper": "^0.10.5",
"uuid": "^8.3.2"
},
"build": {
"appId": "com.circuitmess.circuitblocks",
"productName": "CircuitBlocks",
"copyright": "Copyright © 2021 CircuitMess",
"buildDependenciesFromSource": true,
"npmRebuild": false,
"afterSign": "scripts/notarize.js",
"files": [
"client/build/**/*",
"build/**/*",
"node_modules/**/*",
"examples/**/*",
"resources/**/*"
],
"directories": {
"buildResources": "resources"
},
"extraResources": [
"resources/ArduinoInstallerRO.dmg",
"resources/Mac_OSX_VCP_Driver.zip",
"resources/icon.*",
"examples/**/*"
],
"mac": {
"helperBundleId": "com.circuitmess.circuitblocks",
"category": "public.app-category.developer-tools",
"icon": "resources/icon.icns",
"hardenedRuntime": true,
"entitlements": "resources/Entitlements.plist",
"entitlementsInherit": "resources/Entitlements.plist",
"gatekeeperAssess": false
},
"dmg": {
"sign": false
},
"linux": {
"target": [
"AppImage",
"deb"
]
},
"win": {
"icon": "resources/icon.ico"
}
},
"scripts": {
"rebuild-electron-mac": "CC=/usr/local/Cellar/gcc@7/7.4.0_2/bin/gcc-7 CXX=/usr/local/Cellar/gcc@7/7.4.0_2/bin/g++-7 yarn electron-rebuild",
"rebuild-electron": "CC=/usr/bin/gcc-7 CXX=/usr/bin/g++-7 yarn electron-rebuild",
"build": "tsc",
"clean": "rm -rf node_modules",
"clean-install": "yarn clean && yarn install",
"electron-start": "yarn build && env ELECTRON_ENV=development electron build/app.js",
"electron-watch": "nodemon -w app.js -w core/ --exec electron app.js",
"dev": "concurrently --kill-others-on-fail \"cd client ; yarn dev\" \"wait-on http://localhost:3000 && yarn electron-start\"",
"proto-js": "grpc_tools_node_protoc --js_out=import_style=commonjs,binary:./build/core/grpc --grpc_out=./build/core/grpc --plugin=protoc-gen-grpc=`which grpc_tools_node_protoc_plugin` -I core/grpc/proto core/grpc/proto/cc/arduino/cli/commands/v1/*.proto",
"proto-ts": "protoc --plugin=protoc-gen-ts=./node_modules/.bin/protoc-gen-ts --ts_out core/grpc -I core/grpc/proto core/grpc/proto/cc/arduino/cli/commands/v1/*.proto",
"proto": "yarn proto-js && yarn proto-ts",
"pack": "electron-builder --dir",
"dist": "electron-builder"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@types/electron": "^1.6.10",
"@types/node": "^12.7.4",
"@types/node-localstorage": "^1.3.0",
"@types/universal-analytics": "^0.4.5",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "1.13.0",
"@typescript-eslint/parser": "1.13.0",
"concurrently": "^4.1.1",
"electron": "^7.2.4",
"electron-builder": "^21.2.0",
"electron-notarize": "^0.2.1",
"electron-rebuild": "^1.8.6",
"eslint": "^6.2.0",
"eslint-config-airbnb": "^17.1.1",
"eslint-config-prettier": "^6.0.0",
"eslint-config-react-app": "^4.0.1",
"eslint-plugin-flowtype": "^4.3.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-hooks": "^1.6.1",
"grpc-tools": "^1.11.2",
"grpc_tools_node_protoc_ts": "^2.5.4",
"node-gyp": "^7.1.2",
"prettier": "^1.18.2",
"ts-proto": "^1.93.3",
"typescript": "^3.6.2",
"wait-on": "^3.3.0"
}
}