-
Notifications
You must be signed in to change notification settings - Fork 120
/
Copy pathpackage.json
169 lines (169 loc) · 7.35 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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
{
"name": "eezstudio",
"author": "Envox <[email protected]>",
"description": "Cross-platform visual development tool and SCPI instrument controller",
"homepage": "https://www.envox.hr/eez/studio/studio-introduction.html",
"version": "0.10.2",
"revision": "1",
"license": "GPL-3.0-only",
"repository": "https://github.com/eez-open/studio",
"main": "build/main/main.js",
"scripts": {
"postinstall": "electron-builder install-app-deps",
"start": "electron --trace-warnings --trace-deprecation .",
"build": "npm run build-src && npm run build-css && npm run build-dark-css && npm run build-eez-runtime && npm run build-lvgl-runtime && npm run make-electron-builder-yml",
"build-src": "tsc && node node_modules/gulp-cli/bin/gulp.js release",
"build-css": "node node_modules/less/bin/lessc --clean-css packages/eez-studio-ui/_stylesheets/main.less build/eez-studio-ui/_stylesheets/main.css && npm run build-component-doc-css",
"build-dark-css": "node node_modules/less/bin/lessc packages/eez-studio-ui/_stylesheets/main-dark.less build/eez-studio-ui/_stylesheets/main-dark.css",
"build-component-doc-css": "node node_modules/less/bin/lessc --clean-css packages/eez-studio-ui/_stylesheets/component-doc-light.less build/eez-studio-ui/_stylesheets/component-doc.css",
"build-eez-runtime": "run-script-os",
"build-eez-runtime:darwin:linux": "cp packages/project-editor/flow/runtime/eez_runtime.* build/project-editor/flow/runtime",
"build-eez-runtime:win32": "copy packages\\project-editor\\flow\\runtime\\eez_runtime.* build\\project-editor\\flow\\runtime\\",
"build-lvgl-runtime": "run-script-os",
"build-lvgl-runtime:darwin:linux": "cp packages/project-editor/flow/runtime/lvgl_runtime.* build/project-editor/flow/runtime",
"build-lvgl-runtime:win32": "copy packages\\project-editor\\flow\\runtime\\lvgl_runtime.* build\\project-editor\\flow\\runtime\\",
"make-electron-builder-yml": "cd installation && tsc && cd .. && node installation/make-electron-builder-yml.js",
"watch": "node node_modules/gulp-cli/bin/gulp.js debug && tsc --project tsconfig.dev.json",
"pack": "electron-builder --dir",
"dist": "electron-builder",
"madge-circular": "madge --circular packages/home/main.tsx > circular.txt",
"madge-graph": "madge --image source-graph.svg packages/home/main.tsx",
"madge-graph-circular": "madge --circular --image source-graph-circular.svg packages/home/main.tsx",
"dist-raspbian": "USE_SYSTEM_FPM=true npm run dist",
"tsc-version": "tsc --version",
"electron-version": "electron --version",
"publish-types": "cd packages/eez-studio-types && npm publish",
"pubdoc-dev": "cd tools/pubdoc && tsc && cd build && node pubdoc.js --config ../config/dev.json",
"pubdoc-prod": "cd tools/pubdoc && tsc && cd build && node pubdoc.js --config ../config/prod.json"
},
"prettier": {
"printWidth": 80,
"tabWidth": 4,
"trailingComma": "none",
"arrowParens": "avoid"
},
"devDependencies": {
"@types/adm-zip": "^0.5.0",
"@types/archiver": "^2.1.2",
"@types/better-sqlite3": "^7.6.3",
"@types/bootstrap": "^5.2.6",
"@types/chokidar": "^2.1.3",
"@types/classnames": "^2.2.10",
"@types/css": "0.0.33",
"@types/debug": "^4.1.7",
"@types/decompress": "^4.2.4",
"@types/deep-equal": "^1.0.1",
"@types/emscripten": "^1.39.6",
"@types/ffi-napi": "^4.0.7",
"@types/jquery": "^3.3.38",
"@types/jsdom": "^21.1.1",
"@types/json-stable-stringify": "^1.0.34",
"@types/lodash": "^4.14.185",
"@types/marked": "^5.0.0",
"@types/moment-duration-format": "^2.2.3",
"@types/mousetrap": "^1.6.9",
"@types/node": "^16.6.1",
"@types/opentype.js": "^1.3.3",
"@types/pg": "^8.6.5",
"@types/plotly.js-dist-min": "^2.3.1",
"@types/react": "^18.0.21",
"@types/react-color": "^3.0.6",
"@types/react-dom": "^18.0.6",
"@types/react-virtualized-auto-sizer": "^1.0.1",
"@types/react-window": "^1.8.5",
"@types/ref-napi": "^3.0.7",
"@types/request": "^2.48.8",
"@types/request-promise-native": "^1.0.18",
"@types/serialport": "^8.0.2",
"@types/sha256": "^0.2.0",
"@types/tinycolor2": "^1.4.3",
"@types/wpapi": "^1.1.1",
"@types/xml-formatter": "^2.1.1",
"@types/xterm": "^3.0.0",
"electron": "20.3.8",
"electron-builder": "^23.6.0",
"electron-rebuild": "^3.2.9",
"globby": "^11.1.0",
"gulp": "^4.0.2",
"gulp-cli": "^2.2.0",
"gulp-terser": "^2.1.0",
"jsdom": "^22.1.0",
"json-to-pretty-yaml": "^1.2.2",
"less": "^3.13.1",
"less-plugin-clean-css": "^1.5.1",
"madge": "^5.0.1",
"node-gyp": "9.3.1",
"pump": "^3.0.0",
"request": "^2.88.2",
"request-promise-native": "^1.0.8",
"run-script-os": "^1.1.6",
"typescript": "^4.9.5",
"wpapi": "^1.2.2"
},
"dependencies": {
"@electron/remote": "^2.0.9",
"@emotion/css": "^11.7.1",
"@emotion/react": "^11.11.0",
"@popperjs/core": "^2.9.2",
"adm-zip": "^0.5.9",
"app-module-path": "^2.2.0",
"archiver": "^5.3.0",
"better-sqlite3": "^8.1.0",
"bootstrap": "^5.3.0",
"chokidar": "^3.4.0",
"classnames": "^2.2.6",
"command-exists": "^1.2.9",
"css": "^3.0.0",
"csv-parse": "^5.4.0",
"csv-stringify": "^6.4.0",
"decompress": "^4.2.1",
"deep-equal": "^2.0.5",
"electron-context-menu": "^3.6.1",
"ffi-napi": "^4.0.3",
"file-type": "^8.1.0",
"flexlayout-react": "^0.7.7",
"fourier-transform": "^1.1.2",
"fs-extra": "^6.0.1",
"immutability-helper": "^3.1.1",
"jquery": "^3.5.1",
"json-stable-stringify": "^1.0.1",
"jspanel4": "^4.16.1",
"lodash": "^4.17.21",
"lv_font_conv": "^1.5.2",
"lz4": "0.6.5",
"marked": "^5.1.1",
"mobx": "6.5.0",
"mobx-react": "^7.3.0",
"mobx-utils": "^6.0.4",
"moment": "^2.29.2",
"moment-duration-format": "^2.3.2",
"mousetrap": "^1.6.5",
"mqtt": "^4.3.7",
"node-abi": "^3.33.0",
"opentype.js": "^1.3.4",
"peggy": "^1.2.0",
"plotly.js-dist-min": "^2.5.1",
"python-shell": "^3.0.1",
"quill": "^1.3.7",
"react": "^18.2.0",
"react-color": "^2.19.3",
"react-dnd": "^15.1.2",
"react-dnd-html5-backend": "^15.1.3",
"react-dom": "^18.2.0",
"react-toastify": "^8.2.0",
"react-virtualized-auto-sizer": "^1.0.7",
"react-window": "^1.8.8",
"rimraf": "^3.0.2",
"serialport": "^10.4.0",
"sha256": "^0.2.0",
"showdown": "^1.9.1",
"simple-git": "^3.10.0",
"tinycolor2": "^1.4.1",
"tmp": "0.1.0",
"usb": "^2.9.0",
"xliff": "^6.0.3",
"xml-formatter": "^1.2.1",
"xterm": "^4.14.1",
"xterm-addon-fit": "^0.5.0"
}
}