generated from demiryasinoruc/vue-chrome-extension-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
78 lines (78 loc) · 2.44 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
{
"version": "1.3.14",
"name": "cloud-game-lister",
"description": "cloud-game-lister",
"author": {
"email": "[email protected]",
"name": "Demir Yasin ORUÇ"
},
"scripts": {
"dev": "webpack --mode=development --env.NODE_ENV=development --port=4444 --progress --hide-modules --hot --watch",
"build": "npm run pack && npm run remove-evals && npm run zip",
"pack": "webpack --mode=production --env.NODE_ENV=production --progress --hide-modules",
"remove-evals": "node scripts/remove-evals.js",
"zip": "node scripts/build-zip.js",
"lint": "eslint",
"lint:fix": "npm run lint .eslintrc.json --fix",
"lint:watch": "esw -w --color",
"format": "prettier --write \"**/*.{js,vue,json}\"",
"validate": "prettier .prettierrc --check \"**/*.{js,vue,json}\" && npm run lint",
"prepare": "husky install"
},
"lint-staged": {
"*.{js,vue,json}": [
"npm run format",
"npm run lint:fix",
"npm run validate"
]
},
"dependencies": {
"@babel/plugin-transform-runtime": "^7.7.6",
"bootstrap-dark-4": "^0.0.9",
"chokidar": "^3.5.1",
"node-sass": "^4.14.1",
"vue": "^2.6.12",
"vue-i18n": "^8.24.3",
"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": "^3.0.0",
"copy-webpack-plugin": "^6.2.1",
"css-loader": "^3.2.1",
"dotenv-webpack": "^7.0.2",
"eslint": "^7.25.0",
"eslint-config-prettier": "^8.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-json": "^2.1.2",
"eslint-plugin-vue": "^7.9.0",
"eslint-watch": "^7.0.0",
"fast-glob": "^2.2.7",
"file-loader": "^4.3.0",
"html-webpack-plugin": "^3.2.0",
"husky": "^6.0.0",
"lint-staged": "^10.5.4",
"mini-css-extract-plugin": "^0.8.0",
"prettier": "^2.2.1",
"purgecss-webpack-plugin": "^1.6.0",
"sass-loader": "^7.3.1",
"script-ext-html-webpack-plugin": "^2.1.4",
"style-loader": "^1.0.1",
"stylus": "^0.54.7",
"stylus-loader": "^3.0.2",
"vue-loader": "^15.7.2",
"vue-style-loader": "^4.1.2",
"vue-template-compiler": "^2.6.12",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10",
"webpack-extension-reloader": "^1.1.4"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/demiryasinoruc/vue-chrome-extension-boilerplate"
}
}