forked from microsoft/onnxjs-demo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 1.93 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
{
"name": "onnxjs-demo",
"version": "0.1.6",
"private": true,
"main": "electron.js",
"scripts": {
"prepare": "node post-install.js",
"serve": "vue-cli-service serve",
"build": "vue-cli-service build --target app",
"lint": "tslint -p . -t verbose",
"electron": "electron .",
"electron-packager": "electron-packager . ONNXjs-demo --win32 --ignore=\"/(src|types|public|node_modules)\""
},
"dependencies": {
"ndarray": "^1.0.19",
"ndarray-ops": "^1.2.2",
"ndarray-resample": "^1.0.1",
"ndarray-squeeze": "^1.0.2",
"ndarray-unpack": "^1.0.0",
"onnxruntime-web": "^1.9.0",
"vue": "^2.6.10",
"vue-class-component": "^7.0.2",
"vue-property-decorator": "^8.1.0",
"vue-router": "^3.0.6",
"whatwg-fetch": "^3.0.0"
},
"devDependencies": {
"@types/lodash": "^4.14.123",
"@types/long": "^4.0.0",
"@types/ndarray": "^1.0.7",
"@types/request": "^2.48.1",
"@vue/cli-plugin-babel": "^3.6.0",
"@vue/cli-plugin-typescript": "^3.6.0",
"@vue/cli-service": "^3.6.0",
"babel-plugin-add-module-exports": "1.0.2",
"blueimp-load-image": "^2.21.0",
"chroma-js": "^2.0.3",
"css-loader": "^2.1.1",
"electron": "^5.0.0",
"lint-staged": "^8.1.5",
"postcss-cssnext": "^3.1.0",
"postcss-import": "^12.0.1",
"postcss-loader": "^3.0.0",
"ts-loader": "^5.4.4",
"tslint-no-unused-expression-chai": "^0.1.4",
"typescript": "^3.4.5",
"vue-style-loader": "^4.1.2",
"vue-template-compiler": "^2.5.17",
"vuetify": "^1.5.13",
"webpack": "^4.30.0",
"webpack-command": "^0.4.2"
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
],
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.ts": [
"vue-cli-service lint",
"git add"
],
"*.vue": [
"vue-cli-service lint",
"git add"
]
}
}