-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.85 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
{
"name": "chrome-ext-box",
"version": "1.0.0",
"description": "Chrome Extensions Storage Box",
"author": "kanako",
"license": "MIT",
"homepage": "https://github.com/mkanako/chrome-ext-box",
"repository": {
"type": "git",
"url": "git://github.com/mkanako/chrome-ext-box.git"
},
"dependencies": {
"element-ui": "^2.5.4",
"lodash-es": "^4.17.11",
"normalize.css": "^8.0.1",
"vue": "^2.6.6",
"vue-multiple-back-top": "^1.0.2",
"vue-plugin-webextension-i18n": "^0.1.2",
"vuedraggable": "^2.17.0"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.3.1",
"@intervolga/optimize-cssnano-plugin": "^1.0.6",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.5",
"babel-plugin-component": "^1.1.1",
"clean-webpack-plugin": "^1.0.1",
"copy-webpack-plugin": "^4.6.0",
"css-loader": "^2.1.0",
"cssnano": "^4.1.9",
"eslint": "^5.13.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"eslint-plugin-vue": "^5.1.0",
"file-loader": "^3.0.1",
"html-webpack-plugin": "^3.2.0",
"husky": "^1.3.1",
"mini-css-extract-plugin": "^0.5.0",
"postcss-loader": "^3.0.0",
"stylelint": "^9.10.1",
"stylelint-config-standard": "^18.2.0",
"url-loader": "^1.1.2",
"vue-loader": "^15.6.2",
"vue-template-compiler": "^2.6.6",
"webpack": "^4.29.3",
"webpack-cli": "^3.2.3"
},
"scripts": {
"lint": "eslint src/**/*.{js,vue} --fix --format codeframe",
"lint:css": "stylelint src/**/*.css --fix",
"dev": "webpack -w",
"build": "webpack -p --env.production"
},
"browserslist": [
"last 2 Chrome versions"
],
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
}
}