forked from mubaidr/vue-chrome-extension-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.82 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
{
"version": "1.0.0",
"name": "vue-chrome-extension-boilerplate",
"description": "vue-chrome-extension-boilerplate",
"author": {
"email": "[email protected]",
"name": "Demir Yasin ORUÇ"
},
"scripts": {
"dev": "webpack --mode=development --progress --hot --watch",
"build": "npm run pack && npm run remove-evals && npm run zip",
"lint": "eslint --ext .js,.vue --fix ./src",
"pack": "webpack --mode=production --env.NODE_ENV=production --progress --hide-modules",
"remove-evals": "node scripts/remove-evals.js",
"zip": "node scripts/build-zip.js"
},
"dependencies": {
"@babel/plugin-transform-runtime": "^7.7.6",
"bootstrap": "^4.5.0",
"bootstrap-dark-4": "^0.0.9",
"vue": "^2.6.12",
"webextension-polyfill": "^0.6.0"
},
"devDependencies": {
"@babel/core": "^7.7.5",
"@babel/preset-env": "^7.7.6",
"archiver": "^3.1.1",
"babel-loader": "^8.0.6",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^6.2.1",
"css-loader": "^3.2.1",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.1",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.17.0",
"eslint-plugin-vue": "^6.0.1",
"fast-glob": "^2.2.7",
"file-loader": "^4.3.0",
"html-webpack-plugin": "^5.5.0",
"mini-css-extract-plugin": "^2.7.2",
"purgecss-webpack-plugin": "^5.0.0",
"script-ext-html-webpack-plugin": "^2.1.5",
"style-loader": "^1.0.1",
"vue-loader": "^15.7.2",
"vue-style-loader": "^4.1.2",
"vue-template-compiler": "^2.7.14",
"webpack": "^5.28.0",
"webpack-cli": "^4.5.0"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/demiryasinoruc/vue-chrome-extension-boilerplate"
}
}