-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
29 lines (29 loc) · 918 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
29
{
"name": "warp-m3tering-contract",
"version": "1.0.0",
"description": "Implements a warp contract for the M3tering Protocol",
"author": "Switch Electric:[Onyeka]",
"license": "MIT",
"type": "module",
"scripts": {
"clean": "rimraf bundle",
"build": "rimraf bundle && tsc && node tools/build.js",
"deploy": "rimraf bundle && tsc && node tools/build.js && node tools/deploy.js",
"redeploy": "rimraf bundle && tsc && node tools/build.js && node tools/redeploy.js",
"format": "prettier --write 'contract/*.ts'",
"interact": "node tools/interact.js",
"test": "ts-node --esm tests/test.ts"
},
"dependencies": {
"m3tering-ed25519": "^1.0.2",
"m3tering-ethers": "^1.0.2",
"warp-contracts": "^1.4.41",
"warp-contracts-plugin-deploy": "^1.0.13"
},
"devDependencies": {
"esbuild": "*",
"prettier": "*",
"replace-in-file": "*",
"rimraf": "*"
}
}