-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
91 lines (91 loc) · 3.11 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
{
"name": "blink-to-text",
"private": true,
"version": "1.0.0",
"description": "blink-to-text",
"repository": "",
"license": "UNLICENSED",
"scripts": {
"dev": "webpack serve --config ./script/webpack.config.js",
"build": "cross-env NODE_ENV=production node ./script/build.js",
"watch": "cross-env NODE_ENV=production webpack --watch --config ./script/webpack.config.js",
"postinstall": "cpy ./node_modules/framework7-icons/fonts/*.* ./src/fonts/",
"monaca:preview": "npm run dev & npm run watch",
"monaca:transpile": "npm run build",
"monaca:debug": "npm run watch"
},
"browserslist": [
"Android >= 7",
"IOS >= 11",
"Safari >= 11",
"Chrome >= 49",
"Firefox >= 31",
"Samsung >= 5"
],
"dependencies": {
"@tensorflow-models/face-landmarks-detection": "^0.0.3",
"@tensorflow/tfjs-backend-webgl": "^3.13.0",
"@tensorflow/tfjs-converter": "^3.1.0",
"@tensorflow/tfjs-core": "^3.13.0",
"cordova-plugin-file": "^6.0.2",
"com.virtuoworks.cordova-plugin-canvascamera": "^1.2.0",
"cordova-plugin-splashscreen": "6.0.0",
"cordova-plugin-statusbar": "3.0.0",
"cpy-cli": "^4.1.0",
"dom7": "^4.0.4",
"framework7": "^6.0.17",
"framework7-icons": "^5.0.5",
"framework7-vue": "^6.0.17",
"monaca-plugin-monaca-core": "3.3.1",
"pinia": "^2.0.12",
"skeleton-elements": "^4.0.0",
"swiper": "^8.0.7",
"vue": "^3.0.11"
},
"devDependencies": {
"@babel/core": "^7.17.7",
"@babel/plugin-transform-runtime": "^7.14.3",
"@babel/preset-env": "^7.14.2",
"@babel/runtime": "^7.17.7",
"@vue/compiler-sfc": "^3.0.11",
"babel-loader": "^8.2.2",
"chalk": "^4.1.1",
"copy-webpack-plugin": "^10.2.4",
"cordova": "^11.0.0",
"cross-env": "^7.0.3",
"css-loader": "^5.2.6",
"css-minimizer-webpack-plugin": "^3.0.0",
"eslint": "^8.11.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-vue": "^8.4.1",
"file-loader": "^6.2.0",
"html-loader": "^3.1.0",
"html-webpack-plugin": "^5.3.1",
"mini-css-extract-plugin": "^2.6.0",
"node-sass": "^7.0.1",
"ora": "^5.4.0",
"postcss-loader": "^6.2.1",
"postcss-preset-env": "^7.4.2",
"rimraf": "^3.0.2",
"sass-loader": "^12.6.0",
"style-loader": "^3.3.1",
"terser-webpack-plugin": "^5.1.2",
"url-loader": "^4.1.1",
"vue-loader": "^17.0.0",
"vue-style-loader": "^4.1.3",
"webpack": "^5.37.1",
"webpack-cli": "^4.7.0",
"webpack-dev-server": "^4.7.4",
"yargs": "^17.0.1"
},
"cordova": {
"plugins": {
"cordova-plugin-splashscreen": {},
"monaca-plugin-monaca-core": {},
"cordova-plugin-statusbar": {},
"com.virtuoworks.cordova-plugin-canvascamera": {},
"cordova-plugin-file": {}
}
}
}