forked from molvqingtai/chrome-extension-webpack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.9 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 2.9 KB
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "chrome-extension-template",
"version": "1.0.0",
"description": "ChromeExtension template for vue.js",
"scripts": {
"dev": "npm run lint && webpack --config build/webpack.dev.config.js",
"build": "npm run lint && webpack --config build/webpack.prod.config.js",
"lint": "eslint \"src/**/*.{js,vue}\" --fix & stylelint \"src/**/*.{css,scss,vue}\" --fix & exit 0"
},
"dependencies": {
"@webcomponents/webcomponentsjs": "^2.3.0",
"axios": "^0.19.0",
"clipboard-polyfill": "^2.8.6",
"draggable-vue-directive": "^2.0.6",
"lodash": "^4.17.15",
"vue": "^2.6.10",
"webextension-polyfill": "^0.4.0"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@commitlint/cli": "^8.1.0",
"@commitlint/config-conventional": "^8.1.0",
"babel-eslint": "^10.0.2",
"babel-loader": "^8.0.6",
"cache-loader": "^4.1.0",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^5.0.4",
"core-js": "^3.1.4",
"css-loader": "^3.1.0",
"cssnano": "^4.1.10",
"eslint": "^6.5.0",
"eslint-config-standard": "^14.1.0",
"eslint-loader": "^2.2.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"eslint-plugin-vue": "^5.2.3",
"fibers": "^4.0.1",
"file-loader": "^4.1.0",
"html-webpack-plugin": "^3.2.0",
"http-serve": "^1.0.1",
"lint-staged": "^9.2.1",
"mini-css-extract-plugin": "^0.8.0",
"postcss-import": "^12.0.1",
"postcss-loader": "^3.0.0",
"postcss-preset-env": "^6.7.0",
"postcss-reporter": "^6.0.1",
"sass": "^1.22.9",
"sass-loader": "^7.1.0",
"style-loader": "^1.0.0",
"stylelint": "^10.1.0",
"stylelint-config-standard": "^18.3.0",
"stylelint-webpack-plugin": "^0.10.5",
"url-loader": "^2.1.0",
"vue-loader": "^15.7.1",
"vue-template-compiler": "^2.6.10",
"webpack": "^4.41.0",
"webpack-build-notifier": "^1.1.1",
"webpack-bundle-analyzer": "^3.4.1",
"webpack-cli": "^3.3.9",
"webpack-dev-server": "^3.7.2",
"webpack-extension-reloader": "^1.1.0",
"webpack-merge": "^4.2.1",
"write-file-webpack-plugin": "^4.5.1",
"yorkie": "^2.0.0"
},
"gitHooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -e"
},
"lint-staged": {
"src/**/*.{js,vue}": [
"eslint --fix",
"git add"
],
"src/**/*.{css,scss,vue}": [
"stylelint --fix",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/molvqingtai/chrome-extension-template.git"
},
"keywords": [
"chrome-extension",
"chrome",
"vue"
],
"author": "molvqingtai",
"license": "MIT",
"bugs": {
"url": "https://github.com/molvqingtai/chrome-extension-template/issues"
},
"homepage": "https://github.com/molvqingtai/chrome-extension-template#readme"
}