forked from mubaidr/vue-chrome-extension-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.34 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
{
"author": {
"email": "[email protected]",
"name": "Muhammad Ubaid Raza",
"url": "https://mubaidr.github.io/"
},
"dependencies": {
"@icon-park/vue": "^1.3.5",
"apollo-boost": "^0.4.9",
"graphql": "^15.5.3",
"hotkeys-js": "^3.8.7",
"vue": "^2.6.11",
"vue-apollo": "^3.0.7",
"vue-router": "^3.5.2",
"vuex": "^3.6.2",
"zh_cn": "^0.0.7"
},
"description": "vue-chrome",
"devDependencies": {
"@babel/core": "^7.10.4",
"@babel/preset-env": "^7.10.4",
"@tailwindcss/forms": "^0.3.3",
"archiver": "^4.0.2",
"autoprefixer": "^9",
"babel-loader": "^8.1.0",
"babel-polyfill": "^6.26.0",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^6.0.3",
"cross-env": "^7.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-vue": "^6.2.2",
"fast-glob": "^3.2.4",
"file-loader": "^6.0.0",
"html-webpack-plugin": "^4.3.0",
"mini-css-extract-plugin": "^0.9.0",
"node-sass": "^4.14.1",
"postcss": "^7",
"postcss-class-rename": "^1",
"postcss-cli": "^7",
"postcss-loader": "^4.2.0",
"postcss-remove-selectors": "^2",
"postcss-scss": "^3",
"sass": "^1.26.10",
"sass-loader": "^9.0.2",
"script-ext-html-webpack-plugin": "^2.1.4",
"style-loader": "^1.2.1",
"stylus": "^0.54.7",
"stylus-loader": "^3.0.2",
"tailwindcss": "npm:@tailwindcss/postcss7-compat",
"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",
"repository": {
"type": "git",
"url": "git+https://github.com/mubaidr/vue-chrome.git"
},
"scripts": {
"build": "NODE_ENV=production npm run pack && npm run remove-evals && npm run zip",
"dev": "NODE_ENV=production 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"
}