-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
28 lines (28 loc) · 961 Bytes
/
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
{
"name": "paras-token-contract",
"version": "0.0.1",
"description": "Implementation of NEP-141 for PARAS",
"author": "Near, Inc. <[email protected]>",
"license": "MIT",
"scripts": {
"build": "yarn build:rs",
"build:rs": "./build.sh",
"clean": "rm -rf ./res/* && cargo clean",
"test": "yarn test:unit:rs",
"test:unit:rs": "cargo test -- --nocapture --color always",
"deploy:contract:dev": "yarn build && NODE_ENV=testnet near dev-deploy res/fungible_token.wasm",
"deploy:contract:testnet": "yarn build && NODE_ENV=testnet node deployContract.js",
"deploy:contract:mainnet": "yarn build && NODE_ENV=mainnet node deployContract.js",
"init:contract:testnet": "NODE_ENV=testnet node initContract.js"
},
"dependencies": {
"axios": "^0.21.1",
"blurhash": "^1.1.3",
"body-parser": "^1.19.0",
"bs58": "^4.0.1",
"dotenv": "^8.2.0",
"js-base64": "^3.5.2",
"near-api-js": "^0.31.0",
"sha256": "^0.2.0"
}
}