-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.75 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
{
"name": "electron-mpv",
"version": "0.1.0",
"description": "electron-mpv",
"main": "build/main.bundle.js",
"scripts": {
"pack:win": "npm run build && electron-builder -w",
"build": "concurrently \"webpack --config config/webpack.config.main.js\" \"webpack --config config/webpack.config.web.js\"",
"start": "electron .",
"dev": "cross-env START=1 npm run watch",
"watch": "concurrently \" cross-env DEV=1 webpack --config config/webpack.config.main.js\" \"cross-env DEV=1 webpack-dev-server --config config/webpack.config.web.js\"",
"test": "echo \"Error: no test specified\" && exit 1",
"configure:player": "electron-cmake-js configure -d src/nacl-mpv-plugin --CDPEPPER_VERSION=49 --CDTHIRD_PARTY_DIR=../../.third-party",
"build:player": "electron-cmake-js build -d src/nacl-mpv-plugin"
},
"keywords": [],
"author": "R.J.",
"license": "GPL",
"devDependencies": {
"@babel/core": "^7.10.2",
"@babel/plugin-proposal-class-properties": "^7.10.1",
"@babel/plugin-proposal-decorators": "^7.10.1",
"@babel/plugin-transform-runtime": "^7.10.1",
"@babel/preset-env": "^7.10.2",
"@babel/preset-react": "^7.12.10",
"@babel/runtime": "^7.10.2",
"@fontsource/roboto": "^4.2.2",
"@mdi/font": "^4.1.95",
"@vue/composition-api": "^1.0.0-rc.1",
"babel-cli": "^6.26.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"babel-preset-es2015": "^6.24.1",
"balloon-css": "^1.0.4",
"concurrently": "^5.2.0",
"cross-env": "7.0.2",
"css-loader": "^3.5.3",
"electron": "9.4.1",
"electron-builder": "^20.43.0",
"electron-cmake-js": "^0.1.2",
"eslint": "^4.19.1",
"eslint-config-standard": "^11.0.0",
"eslint-friendly-formatter": "^4.0.1",
"eslint-loader": "^2.0.0",
"eslint-plugin-html": "^4.0.3",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-standard": "^3.1.0",
"eslint-plugin-vue": "^6.2.2",
"fibers": "^5.0.0",
"file-loader": "^6.0.0",
"hard-source-webpack-plugin": "^0.13.1",
"html-webpack-plugin": "^4.3.0",
"node-loader": "^0.6.0",
"node-sass": "^4.14.1",
"sass": "^1.26.5",
"sass-loader": "^7.3.1",
"source-map-support": "^0.5.19",
"url-loader": "^1.0.1",
"vue": "^2.6.11",
"vue-i18n": "^8.11.2",
"vue-loader": "^15.9.2",
"vue-style-loader": "^4.1.2",
"vue-template-compiler": "^2.6.11",
"vuetify": "^2.2.26",
"webpack": "4.43.0",
"webpack-bundle-analyzer": "^3.8.0",
"webpack-cli": "3.3.11",
"webpack-dev-server": "^3.11.0",
"webpack-merge": "^4.2.2",
"yml-loader": "^2.1.0"
}
}