-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.47 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
{
"name": "webvtt-editor",
"version": "0.2.3",
"author": "sasaky <[email protected]>",
"description": "The editor to create WebVTT how subtitles at html5 video.",
"keywords": [
"html5",
"WebVTT",
"subtitles",
"electron"
],
"license": "MIT",
"private": true,
"repository": {
"type": "git",
"url": "http://github.com/sotalbireo/webvtt-editor.git"
},
"bugs": "http://github.com/sotalbireo/webvtt-editor/issues",
"main": "dist/main",
"engines": {
"node": "^10.15.3"
},
"scripts": {
"nuxt:generate": "nuxt generate .",
"nuxt:dev": "nuxt dev .",
"tsc:build": "tsc --build tsconfig.main.json",
"tsc:watch": "tsc --build tsconfig.main.json --watch",
"build:dist": "yarn nuxt:generate && yarn tsc:build",
"build:pack": "run-script-os",
"build:pack:darwin": "electron-builder -mw",
"build:pack:win32": "electron-builder -w",
"build": "yarn build:dist && yarn build:pack",
"dev": "yarn tsc:build && concurrently -k -n tsc,main,renderer -c cyan,cyan,green \"yarn tsc:watch\" \"cross-env NODE_ENV=development electron .\" \"yarn nuxt:dev\"",
"lint": "eslint --ext .ts,.js,.vue --ignore-path .gitignore --ignore-path .eslintignore .",
"precommit": "yarn lint"
},
"dependencies": {
"@nuxt/typescript": "^2.6.1",
"@nuxtjs/axios": "^5.4.1",
"cross-env": "^5.2.0",
"express": "^4.16.4",
"express-useragent": "^1.0.12",
"get-port": "^5.0.0",
"jschardet": "^2.1.0",
"nuxt": "^2.6.1",
"semantic-ui-sass": "^2.4.0",
"ts-node": "^8.0.3",
"typescript": "^3.4.2",
"vue-property-decorator": "^8.1.0",
"vue-youtube": "^1.3.4",
"wait-on": "^3.2.0"
},
"devDependencies": {
"@nuxtjs/eslint-config": "^0.0.1",
"@types/mousetrap": "^1.6.2",
"@types/node": "^12.0.2",
"@typescript-eslint/eslint-plugin": "^1.6.0",
"blob-util": "^2.0.2",
"concurrently": "^4.1.0",
"electron": "^4.1.4",
"electron-builder": "^20.39.0",
"electron-devtools-installer": "^2.2.4",
"eslint": "^5.16.0",
"eslint-config-standard": "^12.0.0",
"eslint-loader": "^2.1.2",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jest": "^22.4.1",
"eslint-plugin-node": "^9.0.1",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": "^4.0.0",
"eslint-plugin-vue": "^5.2.2",
"fibers": "^4.0.1",
"mousetrap": "^1.6.3",
"run-script-os": "^1.0.7",
"sass": "^1.17.4",
"sass-loader": "^7.1.0",
"vuex-class": "^0.3.2"
}
}