-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.35 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
{
"name": "utils",
"version": "0.0.1",
"description": "Testing scripts for the Verto Exchange Network",
"main": "index.js",
"repository": "https://github.com/useverto/utils",
"author": "The Verto Team",
"license": "MIT",
"private": false,
"scripts": {
"build": "tsc",
"run:balance": "yarn run build && node dist/balance.js",
"run:deploy-pst": "yarn run build && node dist/deploy-pst.js",
"run:finalize": "yarn run build && node dist/finalize.js",
"run:generate-wallet": "yarn run build && node dist/generate-wallet.js",
"run:lock": "yarn run build && node dist/lock.js",
"run:mintLocked": "yarn run build && node dist/mintLocked.js",
"run:pst-transfer": "yarn run build && node dist/pst-transfer.js",
"run:vote": "yarn run build && node dist/vote.js",
"run:voteYay": "yarn run build && node dist/voteYay.js",
"run:upload": "yarn run build && node dist/upload.js",
"run:testnet": "yarn run build && node dist/testnet.js",
"fmt": "prettier --write .",
"fmt:check": "prettier --check ."
},
"dependencies": {
"@types/supertest": "^2.0.11",
"arlocal-utils": "^1.0.2",
"arweave": "^1.10.18",
"community-js": "^1.1.69",
"smartweave": "^0.4.46",
"supertest": "^6.1.6"
},
"devDependencies": {
"@types/node": "^14.11.1",
"prettier": "^2.2.1",
"typescript": "^4.0.3"
}
}