-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
74 lines (74 loc) · 2.77 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": "qos-web-wallet",
"version": "1.0.0",
"description": "qos web wallet extension",
"author": "文顺 章 <378253487@qq.com>",
"scripts": {
"lint": "eslint --ext .js,.vue src",
"prettier": "prettier \"src/**/*.{js,vue}\"",
"prettier:write": "npm run prettier -- --write",
"build": "cross-env NODE_ENV=production run-s build-webpack-base inject build-webpack-prod",
"build-webpack-base": "webpack --config 'build/webpack.base.conf.js' --hide-modules",
"build-webpack-prod": "webpack --config 'build/webpack.prod.conf.js' --hide-modules",
"build-webpack-prod-watch": "webpack --config 'build/webpack.prod.conf.js' --hide-modules --watch",
"build:dev": "cross-env NODE_ENV=development webpack --config 'build/webpack.dev.conf.js' --hide-modules",
"build-zip": "node scripts/build-zip.js",
"watch": "run-p watch-webpack-build inject",
"watch-webpack-build": "cross-env NODE_ENV=production run-s build-webpack-base build-webpack-prod-watch inject",
"watch:dev": "run-p watch-webpack inject",
"watch-webpack": "cross-env HMR=true npm run build:dev -- --watch",
"inject": "node src/inject/index.js"
},
"dependencies": {
"axios": "^0.19.0",
"clipboard": "^2.0.4",
"clone": "^2.1.2",
"crypto-js": "^3.1.9-1",
"element-ui": "^2.12.0",
"extensionizer": "^1.0.1",
"js-for-qos-httprpc": "https://github.com/wangkuanzzu/js-for-qos-httprpc.git",
"qosKeys": "https://github.com/QOSGroup/js-keys.git",
"vue": "^2.6.10",
"vue-router": "^3.0.1",
"vuex": "^3.0.1",
"webextension-polyfill": "^0.3.1"
},
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/plugin-proposal-optional-chaining": "^7.0.0",
"@babel/preset-env": "^7.1.0",
"@babel/runtime-corejs3": "^7.4.0",
"archiver": "^3.0.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.2",
"babel-plugin-component": "^1.1.1",
"copy-webpack-plugin": "^4.5.3",
"core-js": "^3.0.1",
"cross-env": "^5.2.0",
"css-loader": "^2.1.1",
"ejs": "^2.6.1",
"eslint": "^5.16.0",
"eslint-config-standard": "^12.0.0",
"eslint-friendly-formatter": "^4.0.1",
"eslint-loader": "^2.1.2",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": "^4.0.0",
"eslint-plugin-vue": "^5.2.2",
"file-loader": "^1.1.11",
"gulp": "^4.0.2",
"js-string-escape": "^1.0.1",
"mini-css-extract-plugin": "^0.4.4",
"node-sass": "^4.9.3",
"npm-run-all": "^4.1.5",
"sass-loader": "^7.1.0",
"vue-loader": "^15.4.2",
"vue-template-compiler": "^2.6.10",
"web-ext-types": "^2.1.0",
"webpack": "^4.20.2",
"webpack-cli": "^3.1.2",
"webpack-extension-reloader": "^1.1.0",
"webpack-merge": "^4.2.2"
}
}