forked from cnwangjie/better-onetab
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.19 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
{
"name": "better-onetab",
"version": "1.0.0",
"description": "a better OneTab for browsers",
"main": "index.js",
"repository": "https://github.com/cnwangjie/better-onetab",
"author": "cnwangjie",
"license": "MIT",
"scripts": {
"dev": "cross-env NODE_ENV=development webpack --config webpack.dev.js --watch",
"dev:moz": "cross-env MOZ=1 yarn dev",
"build": "cross-env NODE_ENV=production webpack --config webpack.prod.js",
"postbuild": "yarn run package",
"package": "rm -f dist.zip && cd dist && zip -r ../dist.zip ./* -x *.map",
"lint": "eslint src --ext js,vue",
"prebuild": "yarn lint"
},
"dependencies": {
"@sentry/browser": "^5.5.0",
"@sentry/integrations": "^5.5.0",
"downloadjs": "^1.4.7",
"lodash": "^4.17.10",
"material-design-icons-iconfont": "^3.0.3",
"moment": "^2.22.1",
"socket.io-client": "^2.2.0",
"vue": "^2.5.21",
"vue-clipboard2": "^0.2.1",
"vue-router": "^3.0.1",
"vuedraggable": "^2.16.0",
"vuetify": "^1.4.3",
"vuex": "^3.0.1",
"webextension-polyfill": "^0.3.1"
},
"devDependencies": {
"@babel/core": "^7.4.3",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/preset-env": "^7.4.3",
"@cnwangjie/eslint-config": "^1.3.0",
"babel-eslint": "^8.2.6",
"babel-loader": "^8.0.5",
"babel-plugin-lodash": "^3.3.4",
"clean-webpack-plugin": "^0.1.19",
"copy-webpack-plugin": "^4.5.1",
"cross-env": "^5.2.0",
"css-loader": "^2.1.0",
"eslint": "^5.3.0",
"eslint-plugin-vue": "^5.0.0-beta.3",
"file-loader": "^1.1.11",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"markdown-loader": "^3.0.0",
"node-sass": "^4.9.0",
"sass": "^1.3.0",
"sass-loader": "^7.0.1",
"style-loader": "^0.23.1",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.2",
"uglifyjs-webpack-plugin": "^1.2.5",
"url-loader": "^1.0.1",
"vue-loader": "^15.0.4",
"vue-style-loader": "^4.1.0",
"vue-template-compiler": "^2.5.16",
"vuetify-loader": "^1.2.1",
"webpack": "^4.6.0",
"webpack-cli": "^3.1.2",
"webpack-merge": "^4.2.1"
},
"sideEffects": [
"**/index.js",
"*.css",
"*.vue",
"*.styl"
]
}