This repository has been archived by the owner on Feb 19, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 110
/
package.json
72 lines (72 loc) · 2.34 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
{
"name": "vue-web-cam",
"version": "1.9.0",
"description": "Webcam component for Vuejs applications",
"repository": {
"type": "git",
"url": "https://github.com/vinceg/vue-web-cam"
},
"license": "MIT",
"author": {
"name": "Vincent Gabriel",
"email": "vadimg88@gmail.com",
"url": "https://github.com/vinceg"
},
"files": [
"dist",
"nuxt"
],
"main": "dist/index.js",
"scripts": {
"build": "cross-env NODE_ENV=production webpack --progress --hide-modules --config build/webpack.config.js",
"demo": "cross-env NODE_ENV=production webpack --progress --hide-modules --config demo/webpack.config.js",
"dev": "cross-env NODE_ENV=development webpack-dev-server --hot --config demo/webpack.config.js"
},
"dependencies": {
"vue": "^2.6.10"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-decorators": "^7.0.0",
"@babel/plugin-proposal-export-namespace-from": "^7.0.0",
"@babel/plugin-proposal-function-sent": "^7.0.0",
"@babel/plugin-proposal-json-strings": "^7.0.0",
"@babel/plugin-proposal-numeric-separator": "^7.0.0",
"@babel/plugin-proposal-object-rest-spread": "^7.2.0",
"@babel/plugin-proposal-throw-expressions": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-syntax-import-meta": "^7.0.0",
"@babel/plugin-transform-object-assign": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.2.0",
"@babel/polyfill": "^7.2.5",
"@babel/preset-env": "^7.2.3",
"@babel/runtime": "^7.2.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.5",
"cross-env": "^5.1",
"css-loader": "^0.25.0",
"eslint": "^5.8.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-vue": "^4.7.1",
"extract-text-webpack-plugin": "^3.0",
"file-loader": "^0.9.0",
"function-bind": "^1.0.2",
"html-webpack-plugin": "3.2.0",
"lodash": "^4.17.13",
"mixin-deep": "^2.0.1",
"set-value": "^2.0.1",
"vue-loader": "^15.0.0",
"vue-style-loader": "^4.1.2",
"vue-template-compiler": "^2.5.7",
"webpack": "4.28.4",
"webpack-cli": "^3.2.1",
"webpack-dev-server": ">=3.1.11",
"webpack-merge": "^0.14.1"
},
"engines": {
"node": ">= 8.10.0"
}
}