-
Notifications
You must be signed in to change notification settings - Fork 440
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.38 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.38 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
{
"name": "WinMLDashboard",
"version": "0.7.0",
"icon": "public/winml_icon.ico",
"description": "Dashboard for development in ONNX using Windows ML",
"author": "Microsoft Corporation",
"homepage": ".",
"main": "src/electronMain.js",
"private": true,
"scripts": {
"start": "react-scripts-ts start",
"build": "react-scripts-ts build",
"test": "mocha",
"eject": "react-scripts-ts eject",
"postinstall": "node scripts/postinstall.js && yarn copy-netron",
"copy-netron": "yarn lock-netron-deps && yarn --cwd deps/Netron && python deps/copy_netron.py",
"build-electron": "react-app-rewired build --scripts-version react-scripts-ts",
"build-cpp": "msbuild src/cpp/DebugRunner.sln",
"nuget-restore-cpp": "nuget restore src/cpp/DebugRunner.sln",
"electron-dev": "electron . http://localhost:3000",
"electron-prod": "yarn nuget-restore-cpp && yarn build-cpp && yarn build-electron && electron .",
"lock-netron-deps": "yarn --cwd deps/Netron install && yarn --cwd deps/Netron upgrade d3@5.16.0 flatbuffers@1.12.0"
},
"build": {
"appId": "com.microsoft.dashboard.winml",
"mac": {
"category": "public.app-category.developer-tools"
},
"win": {
"target": [
"msi"
]
}
},
"dependencies": {
"@types/ncp": "^2.0.1",
"electron-log": "^4.0.7",
"electron-squirrel-startup": "^1.0.0"
},
"devDependencies": {
"@types/fs-extra": "^8.1.0",
"@types/jest": "^25.1.3",
"@types/md5": "^2.1.33",
"@types/node": "^10.5.3",
"@types/prop-types": "^15.5.4",
"@types/react": "^16.4.7",
"@types/react-dom": "^16.0.6",
"@types/react-redux": "^7.1.7",
"@types/react-select": "^3.0.10",
"@types/webdriverio": "^5.0.0",
"@types/yauzl": "^2.9.0",
"ajv": "^6.5.2",
"babel-minify": "^0.5.1",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"electron": "^18.3.7",
"electron-winstaller": "^4.0.0",
"fs-extra": "^8.1.0",
"md5": "^2.2.1",
"mocha": "^7.1.0",
"ncp": "^2.0.0",
"npm-font-open-sans": "^1.1.0",
"office-ui-fabric-react": "^6.40.0",
"react": "^16.5.2",
"react-app-rewired": "1.6.2",
"react-dom": "^16.4.1",
"react-markdown": "^4.3.1",
"react-redux": "^7.2.0",
"react-scripts-ts": "^3.1.0",
"react-select": "^3.0.8",
"redux": "^4.0.0",
"spectron": "^10.0.1",
"typescript": "^3.2.2",
"yauzl": "^2.10.0"
}
}