-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
106 lines (106 loc) · 3.43 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "vicissuer",
"version": "2.0.0",
"description": "Fee by any token",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"nodemon": "./node_modules/.bin/nodemon index.js",
"dev": "npm run nodemon & cross-env NODE_ENV=development webpack-dev-server --hot --host 0.0.0.0 --port 3000",
"dev-https": "npm run nodemon & cross-env NODE_ENV=development webpack-dev-server --https --key ./sslcert/server.key --cert ./sslcert/server.crt --hot --host 0.0.0.0 --port 3000",
"client-dev": "cross-env NODE_ENV=development webpack-dev-server --hot --host 0.0.0.0 --port 3000",
"build": "cross-env NODE_ENV=production webpack -p --progress --hide-modules",
"lint": "eslint --cache ./ --ext .vue --ext .js",
"lint-fix": "eslint --cache ./ --ext .vue --ext .js --fix",
"crawl-dev": "./node_modules/.bin/nodemon crawl.js",
"crawl": "node ./crawl.js",
"start": "node ./index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/buildOnViction/tomoissuer.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/buildOnViction/tomoissuer/issues"
},
"homepage": "https://github.com/buildOnViction/tomoissuer#readme",
"dependencies": {
"@ledgerhq/hw-app-eth": "^6.24.1",
"@ledgerhq/hw-transport-u2f": "^4.56.0",
"@ledgerhq/hw-transport-webusb": "^6.24.1",
"axios": "^0.21.1",
"bignumber.js": "^8.1.1",
"bip39": "^3.0.2",
"blueimp-md5": "^2.10.0",
"body-parser": "^1.19.0",
"config": "^3.1.0",
"cors": "^2.8.5",
"ethereumjs-tx": "^1.3.7",
"ethereumjs-util": "^6.1.0",
"express": "^4.16.4",
"express-validator": "^5.3.1",
"file-loader": "^4.0.0",
"hdkey": "^1.1.1",
"js-yaml": "^3.13.1",
"lodash.get": "^4.4.2",
"lodash.map": "^4.6.0",
"moment": "^2.24.0",
"mongoose": "^5.5.12",
"morgan": "^1.9.1",
"solc": "^0.4.25",
"store": "^2.0.12",
"swagger-ui-express": "^4.0.2",
"trezor-connect": "^8.1.7",
"truffle-privatekey-provider": "^1.5.0",
"url-join": "^4.0.0",
"url-loader": "^2.0.0",
"vuex": "^3.1.1",
"web3": "^1.5.2",
"web3-provider-engine": "^16.0.1",
"winston": "^3.2.1"
},
"devDependencies": {
"@babel/core": "^7.4.4",
"@truffle/hdwallet-provider": "^1.2.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.5",
"bootstrap-vue": "2.17.3",
"clean-webpack-plugin": "^3.0.0",
"commander": "^3.0.0",
"cross-env": "^5.2.0",
"css-loader": "^2.1.1",
"eslint": "^4.19.1",
"eslint-config-standard": "^11.0.0",
"eslint-loader": "^2.0.0",
"eslint-plugin-babel": "^5.1.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-standard": "^3.1.0",
"eslint-plugin-vue": "^4.5.0",
"ganache-cli": "^6.12.1",
"html-webpack-plugin": "^3.2.0",
"node-sass": "^4.14.1",
"nodemon": "^1.19.0",
"sass-loader": "^7.1.0",
"truffle": "^5.1.52",
"uglifyjs-webpack-plugin": "^2.1.2",
"vue": "^2.6.10",
"vue-codemirror": "^4.0.6",
"vue-loader": "^15.7.0",
"vue-router": "^3.0.6",
"vue-style-loader": "^4.1.2",
"vue-template-compiler": "^2.6.10",
"vue-toasted": "^1.1.27",
"vuelidate": "^0.7.4",
"webpack": "^4.30.0",
"webpack-cli": "^3.3.2",
"webpack-dev-server": "^3.11.0",
"webpack-merge": "^4.2.1"
}
}