forked from Diora-Network/Web-Wallet
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.24 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.24 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
{
"name": "diorawallet",
"version": "0.1.0",
"description": "Simple Wallet for sending/receiving DIOR",
"scripts": {
"lint-fix": "./node_modules/.bin/eslint --cache --fix ./",
"lint": "./node_modules/.bin/eslint --cache ./",
"build": "node ./node_modules/webpack/bin/webpack.js",
"dev": "npm run webpack & npm run nodemon",
"nodemon": "./node_modules/.bin/nodemon index.js",
"start": "node index.js",
"webpack": "node ./node_modules/webpack/bin/webpack.js -d --w"
},
"author": "",
"license": "MIT",
"devDependencies": {
"@xkeshi/vue-qrcode": "^0.3.0",
"axios": "^0.17.1",
"babel-cli": "^6.22.2",
"babel-core": "^6.22.1",
"babel-eslint": "^6.1.2",
"babel-loader": "^6.2.10",
"babel-plugin-transform-runtime": "^6.22.0",
"babel-preset-env": "^1.1.8",
"babel-preset-es2015": "^6.22.0",
"babel-register": "^6.22.0",
"copy-webpack-plugin": "^4.0.1",
"css-loader": "^0.26.1",
"eslint": "^3.19.0",
"eslint-config-standard": "^6.0.0",
"eslint-plugin-babel": "^4.0.0",
"eslint-plugin-mocha": "^4.8.0",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^2.0.0",
"html-webpack-plugin": "^2.28.0",
"json-loader": "^0.5.4",
"nodemon": "^1.12.1",
"style-loader": "^0.13.1",
"stylus-loader": "^3.0.2",
"vue": "^2.5.9",
"vue-loader": "^13.5.0",
"vue-material": "1.0.0-beta-7",
"vue-router": "^3.0.1",
"vue-template-compiler": "^2.5.9",
"webpack": "^2.2.1",
"webpack-dev-server": "^2.3.0"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.2",
"@fortawesome/free-regular-svg-icons": "^5.2.0",
"@fortawesome/free-solid-svg-icons": "^5.2.0",
"@fortawesome/vue-fontawesome": "^0.1.1",
"animated-number-vue": "^0.1.3",
"bignumber.js": "^7.2.1",
"bip39": "^2.4.0",
"body-parser": "^1.18.2",
"clipboard": "^2.0.1",
"config": "^1.28.1",
"ejs": "^2.5.7",
"ethereumjs-abi": "^0.6.5",
"ethereumjs-tx": "^1.3.7",
"ethereumjs-wallet": "^0.6.0",
"express": "^4.16.2",
"express-validator": "^4.3.0",
"i": "^0.3.6",
"kue": "^0.11.6",
"lodash": "^4.17.10",
"mongoose": "^4.13.7",
"npm": "^6.4.0",
"redis": "^2.8.0",
"truffle-hdwallet-provider": "^1.0.9",
"url-parse": "^1.4.3",
"vue-progressbar": "^0.7.5",
"web3": "^1.0.0-beta.35",
"websocket": "^1.0.26"
}
}