-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.67 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
{
"name": "Cosmos-tasks",
"version": "1.0.0",
"type": "module",
"private": true,
"scripts": {
"dev": "nuxt",
"build": "nuxt build",
"start": "nuxt start",
"generate": "nuxt generate",
"install:get-price": "cd scripts/get-price/ && npm install",
"install:simple-send": "cd scripts/simple-send/ && npm install",
"install:withdraw-rewards": "cd scripts/withdraw-rewards/ && npm install",
"install:validator-commisions": "cd scripts/validator-commisions/ && npm install",
"install:osmosis-deposit": "cd scripts/osmosis-deposit/ && npm install",
"install:create-account": "node createAccount.js",
"clear:get-price": "cd scripts/get-price/ && rm -Rf node_modules/",
"clear:simple-send": "cd scripts/simple-send/ && rm -Rf node_modules/",
"clear:withdraw-rewards": "cd scripts/withdraw-rewards/ && rm -Rf node_modules/",
"clear:validator-commisions": "cd scripts/validator-commisions/ && rm -Rf node_modules/",
"clear:osmosis-deposit": "cd scripts/osmosis-deposit/ && rm -Rf node_modules/",
"clear:create-account": "> auth.config.js",
"postinstall": "run-p install:*",
"clear": "run-p clear:*"
},
"dependencies": {
"@cosmjs/proto-signing": "^0.28.11",
"@nuxtjs/axios": "^5.13.6",
"core-js": "^3.19.3",
"express": "^4.18.1",
"jsonwebtoken": "^8.5.1",
"npm-run-all": "^4.1.5",
"nuxt": "^2.12.2",
"pm2": "^5.2.0",
"vue": "^2.6.14",
"vue-server-renderer": "^2.6.14",
"vue-session": "^1.0.0",
"vue-template-compiler": "^2.6.14",
"vue-toastification": "^1.7.14",
"vuetify": "^2.6.1",
"webpack": "^4.46.0"
},
"devDependencies": {
"@nuxtjs/vuetify": "^1.12.3"
}
}