forked from akash-network/console
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.92 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
{
"name": "cloudmos-indexer",
"version": "1.4.0",
"description": "Indexer for any Cosmos based blockchain",
"author": "Cloudmos",
"license": "Apache-2.0",
"main": "server.js",
"scripts": {
"start": "webpack --config webpack.dev.js --watch",
"build": "webpack --config webpack.prod.js",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/akash-network/cloudmos.git"
},
"bugs": {
"url": "https://github.com/akash-network/cloudmos/issues"
},
"homepage": "https://github.com/akash-network/cloudmos",
"dependencies": {
"@akashnetwork/akashjs": "0.4.11",
"@cosmjs/crypto": "^0.31.1",
"@cosmjs/encoding": "^0.31.1",
"@cosmjs/math": "^0.31.1",
"@cosmjs/proto-signing": "^0.31.1",
"@cosmjs/stargate": "^0.31.1",
"@sentry/node": "^7.52.0",
"async": "^3.2.4",
"axios": "^0.27.2",
"cloudmos-shared": "file:../shared/",
"cosmjs-types": "^0.8.0",
"date-fns": "^2.29.2",
"date-fns-tz": "^1.3.6",
"dotenv": "^12.0.4",
"express": "^4.18.1",
"human-interval": "^2.0.1",
"js-sha256": "^0.9.0",
"level": "^8.0.0",
"node-fetch": "^2.6.1",
"node-gzip": "^1.1.2",
"pg": "^8.7.3",
"pg-hstore": "^2.3.4",
"protobufjs": "^6.11.2",
"reflect-metadata": "^0.1.13",
"sequelize": "^6.28.0",
"sequelize-typescript": "^2.1.5"
},
"devDependencies": {
"@types/async": "^3.2.15",
"@types/express": "^4.17.13",
"@types/node": "^16.11.68",
"@types/node-fetch": "^2.6.2",
"@types/node-gzip": "^1.1.0",
"@types/pg": "^8.6.5",
"@types/uuid": "^8.3.1",
"@types/validator": "^13.7.8",
"alias-hq": "^5.1.6",
"nodemon": "^2.0.7",
"nodemon-webpack-plugin": "^4.5.2",
"supertest": "^6.1.5",
"ts-jest": "^27.0.4",
"ts-loader": "^9.2.5",
"typescript": "^4.3.5",
"webpack": "^5.33.2",
"webpack-cli": "^4.7.2",
"webpack-node-externals": "^3.0.0"
}
}