-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
133 lines (133 loc) · 3.73 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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
{
"name": "hobby-hodlr",
"version": "2.0.15",
"description": "Easily view your digital assets in a self-hosted system",
"main": "index.js",
"scripts": {
"start": "node index",
"init": "node modules/init.js",
"start:docker": "wait && npm run initialize && npm start",
"dev": "webpack-dev-server --inline --progress --config build/webpack.dev.conf.js",
"build": "node build/build.js",
"initialize": "node modules/databaseInitializer.js",
"ts": "node modules/ts_test.js",
"test": "ava"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/hobbyhodlr/portfolio.git"
},
"keywords": [
"DeFi",
"Ethereum",
"Cosmos",
"Bitcoin"
],
"author": "@trevorjtclarke",
"license": "GNU GPLv3",
"bugs": {
"url": "https://gitlab.com/hobbyhodlr/portfolio/issues"
},
"homepage": "https://gitlab.com/hobbyhodlr/portfolio#readme",
"dependencies": {
"@portis/web3": "^2.0.0-beta.57",
"@walletconnect/web3-provider": "^1.1.0",
"apollo-boost": "^0.4.7",
"apollo-cache": "^1.3.4",
"apollo-link": "^1.2.14",
"apollo-link-context": "^1.0.20",
"apollo-link-error": "^1.1.13",
"apollo-link-http": "^1.5.17",
"apollo-link-ws": "^1.0.20",
"apollo-server-express": "^2.12.0",
"ava": "^3.13.0",
"axios": "^0.19.0",
"bcrypt": "^5.0.0",
"big.js": "^5.2.2",
"bignumber.js": "^9.0.1",
"body-parser": "^1.19.0",
"bs58": "^4.0.1",
"chart.js": "^2.9.3",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"ethers": "^5.0.16",
"express": "^4.17.1",
"express-graphql": "^0.9.0",
"get-image-colors": "^2.0.1",
"graphql": "^15.0.0",
"graphql-tag": "^2.10.3",
"helmet": "^3.23.3",
"jsonwebtoken": "^8.5.1",
"lightweight-charts": "^2.0.0",
"luxon": "^1.23.0",
"md5": "^2.2.1",
"mongodb": "^3.6.3",
"rules-js": "^1.0.0",
"subscriptions-transport-ws": "^0.9.16",
"view-design": "^4.1.2",
"vue": "^2.5.11",
"vue-apollo": "^3.0.3",
"vue-chartjs": "^3.5.0",
"vue-router": "^3.1.5",
"vue-socket": "^0.2.3",
"vuex": "^3.0.1",
"web3": "^1.2.11",
"web3data-js": "^0.7.3"
},
"devDependencies": {
"autoprefixer": "^7.1.2",
"babel-core": "^6.22.1",
"babel-helper-vue-jsx-merge-props": "^2.0.3",
"babel-loader": "^7.1.1",
"babel-plugin-syntax-jsx": "^6.18.0",
"babel-plugin-transform-runtime": "^6.22.0",
"babel-plugin-transform-vue-jsx": "^3.5.0",
"babel-preset-env": "^1.3.2",
"babel-preset-stage-2": "^6.22.0",
"chalk": "^2.0.1",
"copy-webpack-plugin": "^4.0.1",
"css-loader": "^0.28.11",
"extract-text-webpack-plugin": "^3.0.0",
"file-loader": "^1.1.4",
"friendly-errors-webpack-plugin": "^1.6.1",
"glob": "^7.1.6",
"html-webpack-plugin": "^2.30.1",
"kleur": "^4.1.1",
"less": "^3.12.2",
"less-loader": "^5.0.0",
"node-notifier": "^5.1.2",
"node-sass": "^4.14.1",
"optimize-css-assets-webpack-plugin": "^3.2.0",
"ora": "^1.2.0",
"portfinder": "^1.0.13",
"postcss-import": "^11.0.0",
"postcss-loader": "^2.0.8",
"postcss-url": "^7.2.1",
"prompts": "^2.3.2",
"rimraf": "^3.0.2",
"sass-loader": "^6.0.7",
"semver": "^5.3.0",
"shelljs": "^0.7.6",
"style-loader": "^0.23.1",
"uglifyjs-webpack-plugin": "^1.1.1",
"url-loader": "^0.5.8",
"vue-cli-plugin-apollo": "^0.22.2",
"vue-loader": "^13.3.0",
"vue-style-loader": "^3.0.1",
"vue-template-compiler": "^2.5.2",
"webpack": "^3.6.0",
"webpack-bundle-analyzer": "^2.9.0",
"webpack-dev-server": "^2.9.1",
"webpack-merge": "^4.1.0"
},
"engines": {
"node": ">=12.13.0",
"npm": ">=6.13.7"
},
"ava": {
"files": [
"tests/**/*.test.js"
],
"verbose": true
}
}