-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
60 lines (60 loc) · 1.94 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
{
"name": "browser-extension",
"version": "1.0.1",
"description": "A Vue.js web extension",
"author": "Ilya Zelenko <[email protected]>",
"scripts": {
"lint": "eslint --ext .js,.vue src",
"build": "NODE_OPTIONS='--openssl-legacy-provider' cross-env NODE_ENV=production webpack --hide-modules",
"build:dev": "NODE_OPTIONS='--openssl-legacy-provider' cross-env NODE_ENV=development webpack --hide-modules",
"build-zip": "node scripts/build-zip.js",
"watch": "npm run build -- --watch",
"watch:dev": "cross-env HMR=true npm run build:dev -- --watch"
},
"resolutions": {
"chokidar": "^3.3.1"
},
"dependencies": {
"axios": "^0.18.0",
"core-js": "^2.5.7",
"regenerator-runtime": "^0.12.1",
"vue": "^2.5.17",
"vue-cool-select": "^1.5.1",
"vue-plugin-axios": "^1.0.14",
"vue-router": "^3.0.1",
"vuex": "^3.0.1",
"webextension-polyfill": "^0.3.1"
},
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/plugin-proposal-optional-chaining": "^7.0.0",
"@babel/preset-env": "^7.1.0",
"archiver": "^3.0.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.2",
"copy-webpack-plugin": "^4.5.3",
"cross-env": "^5.2.0",
"css-loader": "^3.6.0",
"ejs": "^2.6.1",
"eslint": "^5.7.0",
"eslint-config-standard": "^12.0.0",
"eslint-friendly-formatter": "^4.0.1",
"eslint-loader": "^2.1.1",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"eslint-plugin-vue": "^5.0.0-beta.3",
"file-loader": "^1.1.11",
"mini-css-extract-plugin": "^0.9.0",
"sass": "^1.59.3",
"sass-loader": "^7.0.0",
"vue-loader": "^15.4.2",
"vue-template-compiler": "^2.5.17",
"web-ext-types": "^2.1.0",
"webpack": "^4.20.2",
"webpack-chrome-extension-reloader": "^0.8.3",
"webpack-cli": "^3.1.2",
"webpack-shell-plugin": "^0.5.0"
}
}