This repository has been archived by the owner on Dec 2, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 63
/
Copy pathpackage.json
55 lines (55 loc) · 1.77 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
{
"author": {
"email": "[email protected]",
"name": "Muhammad Ubaid Raza",
"url": "https://mubaidr.github.io/"
},
"dependencies": {
"bulma-fluent": "^0.4.3",
"vue": "^2.6.11"
},
"description": "vue-chrome-extension-boilerplate",
"devDependencies": {
"@babel/core": "^7.10.4",
"@babel/preset-env": "^7.10.4",
"archiver": "^4.0.2",
"babel-loader": "^8.1.0",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^6.0.3",
"css-loader": "^3.6.0",
"eslint": "^7.4.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.20.3",
"eslint-plugin-vue": "^6.2.2",
"file-loader": "^6.0.0",
"html-webpack-plugin": "^4.3.0",
"sass": "^1.26.10",
"sass-loader": "^9.0.2",
"script-ext-html-webpack-plugin": "^2.1.4",
"style-loader": "^1.2.1",
"vue-loader": "^15.9.3",
"vue-style-loader": "^4.1.2",
"vue-template-compiler": "^2.6.11",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12",
"webpack-extension-reloader": "^1.1.4"
},
"license": "MIT",
"name": "vue-chrome-extension-boilerplate",
"repository": {
"type": "git",
"url": "git+https://github.com/mubaidr/vue-chrome-extension-boilerplate.git"
},
"scripts": {
"build": "npm run pack && npm run remove-evals && npm run zip",
"dev": "webpack --mode=development --env.NODE_ENV=development --progress --hide-modules --hot --watch",
"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"
},
"version": "1.0.0"
}