forked from akash-network/console
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.93 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
{
"name": "cloudmos-api",
"version": "2.10.0",
"description": "Api providing data to the deploy tool",
"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"
},
"dependencies": {
"@akashnetwork/akashjs": "0.5.0",
"@chain-registry/assets": "^0.7.1",
"@cosmjs/crypto": "^0.28.11",
"@cosmjs/encoding": "^0.28.11",
"@cosmjs/math": "^0.28.11",
"@cosmjs/proto-signing": "^0.28.11",
"@cosmjs/stargate": "^0.28.11",
"@octokit/rest": "^18.12.0",
"@sentry/node": "^7.55.2",
"axios": "^0.27.2",
"cloudmos-shared": "file:../shared/",
"cors": "^2.8.5",
"cosmjs-types": "^0.5.0",
"date-fns": "^2.29.2",
"date-fns-tz": "^1.3.6",
"dotenv": "^12.0.4",
"express": "^4.17.1",
"express-async-handler": "^1.2.0",
"express-jwt": "^7.7.5",
"human-interval": "^2.0.1",
"js-sha256": "^0.9.0",
"jwks-rsa": "^2.1.4",
"markdown-to-txt": "^2.0.1",
"memory-cache": "^0.2.0",
"node-fetch": "^2.6.1",
"pg": "^8.7.3",
"pg-hstore": "^2.3.4",
"protobufjs": "^6.11.2",
"semver": "^7.3.8",
"sequelize": "^6.21.3",
"sequelize-typescript": "^2.1.5",
"stripe": "^10.14.0"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/memory-cache": "^0.2.2",
"@types/node": "^16.6.0",
"@types/node-fetch": "^2.6.2",
"@types/pg": "^8.6.5",
"@types/semver": "^7.5.2",
"@types/uuid": "^8.3.1",
"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"
}
}