-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
67 lines (67 loc) · 2.28 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
{
"name": "visual",
"productName": "VisUAL2",
"main": "main.js",
"description" : "F# written ARM assembler and simulator with elmish, React Monaco Editor, Electron & Fable",
"author" : "Dr. Tom Clarke, 2018 3rd year HLP students at EEE ICL, Sally Chan",
"version" : "1.07.0",
"scripts": {
"start": "cd src/Main && dotnet fable webpack -w --port free -- -w --config webpack.config.js -w --mode production",
"build": "cd src/Main && dotnet fable webpack --port free -- --config webpack.config.js --mode production",
"pack": "electron-builder --dir",
"dist": "electron-builder",
"pack-win": "electron-builder --windows",
"pack-linux": "electron-builder --linux",
"pack-osx": "electron-builder --macos",
"pack-all": "yarn pack-osx && yarn pack-linux && yarn pack-win",
"launch": "electron . -w",
"launch-debug": "electron . -w --debug"
},
"dependencies": {
"@babel/core": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@babel/runtime-corejs2": "^7.0.0",
"@tippy.js/react": "^2.2.0",
"copyfiles": "^2.1.0",
"cross-zip": "^2.1.5",
"css-loader": "^2.1.1",
"electron-context-menu": "^0.9.1",
"electron-settings": "^3.2.0",
"electron-tabs": "^0.9.1",
"fable-compiler": "^2.3.10",
"lodash": ">=4.17.11",
"monaco-editor": "0.16.2",
"monaco-editor-webpack-plugin": "^1.7.0",
"node-sass": "^4.12.0",
"react": "^16.8.6",
"react-dom": "^16.4.2",
"react-monaco-editor": "^0.25.1",
"react-resize-detector": "^4.1.3",
"requirejs": "^2.3.5",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"tippy.js": "^2.5.4",
"vex-dialog": "^1.1.0",
"vex-js": "^4.1.0"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/preset-env": "^7.0.0",
"@babel/standalone": "^7.0.0",
"@babel/template": "^7.0.0",
"babel-loader": "^8.0.0",
"cloc": "^2.3.3",
"copy-webpack-plugin": "^4.5.1",
"cross-zip-cli": "^1.0.0",
"electron": "4.1.5",
"electron-builder": "^20.43.0",
"electron-installer-dmg": "^1.0.0",
"fable-loader": "^2.1.6",
"loglevel": "^1.4.1",
"uglifyjs-webpack-plugin": "^1.2.5",
"webpack": "^4.30.0",
"webpack-cli": "^3.3.1"
}
}