-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
executable file
·60 lines (60 loc) · 2.04 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
{
"name": "wallet",
"keywords": [],
"scripts": {
"build-deploy": "webpack --config build/deploy/webpack-deploy.config.js",
"build-wallet": "webpack --config build/webpack-app.config.js",
"build-wallet-analyzer": "webpack --config build/webpack-app.config.js --mode development --analyzer",
"build": "npm run build-wallet",
"test": "npm run build-wallet",
"dev": "webpack-dev-server --config=./build/webpack-hot-loader.config.js --content-base dist/dev --hot --inline --host 0.0.0.0"
},
"dependencies": {
"@babel/polyfill": "~7.2",
"axios": "^0.21.1",
"file-saver": "^2.0.5",
"qrcode-vue": "^1.2.0",
"strength": "^0.1.4",
"v-tooltip": "^2.1.2",
"vue": "^2.6.12",
"vue-clickaway": "^2.2.2",
"vue-clipboard2": "^0.3.1",
"vue-notification": "^1.3.20",
"vue-qrcode-reader": "^2.3.16",
"vue-router": "^3.5.1",
"vuex": "^3.6.2"
},
"devDependencies": {
"@babel/core": "~7.2",
"@babel/plugin-proposal-class-properties": "~7.3",
"@babel/plugin-proposal-decorators": "~7.3",
"@babel/plugin-proposal-json-strings": "~7.2",
"@babel/plugin-syntax-dynamic-import": "~7.2",
"@babel/plugin-syntax-import-meta": "~7.2",
"@babel/preset-env": "~7.3",
"@webpack-cli/serve": "^1.3.0",
"autoprefixer": "^9.8.6",
"babel-eslint": "~10.0",
"babel-loader": "~8.0",
"compression-webpack-plugin": "^7.1.2",
"copy-webpack-plugin": "^5.1.2",
"cross-env": "~5.2",
"css-loader": "~2.1",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^5.1.0",
"friendly-errors-webpack-plugin": "~1.7",
"html-webpack-plugin": "~3.2",
"mini-css-extract-plugin": "~0.5",
"optimize-css-assets-webpack-plugin": "^5.0.4",
"uglifyjs-webpack-plugin": "~1.2",
"vue-loader": "~15.6",
"vue-style-loader": "~4.1",
"vue-template-compiler": "^2.6.12",
"webpack": "~4.29",
"webpack-bundle-analyzer": "~3.3",
"webpack-cli": "~3.2",
"webpack-dev-server": "~3.1",
"webpack-hot-middleware": "~2.24",
"webpack-merge": "~4.2"
}
}