-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.07 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
{
"name": "warp-dre-contract",
"version": "1.0.0",
"description": "Warp Dre Contracts",
"main": "index.js",
"author": "Just Ppe <ppedziwiatr@warp.cc>",
"license": "MIT",
"private": false,
"scripts": {
"clean": "rimraf ./dist",
"build-ts": "node build.js",
"build": "yarn run clean && yarn run build-ts",
"deploy:mainnet": "yarn ts-node src/tools/deploy-contract.ts",
"deploy:testnet": "yarn ts-node src/tools/deploy-testnet-contract.ts",
"test": "jest"
},
"engines": {
"node": ">=16.5"
},
"devDependencies": {
"@babel/preset-typescript": "^7.23.3",
"@types/jest": "^29.5.8",
"@types/node": "18.18.9",
"arlocal": "^1.1.42",
"arweave": "^1.14.4",
"copyfiles": "^2.4.1",
"esbuild": "0.19.5",
"jest": "^29.7.0",
"replace-in-file": "^7.0.2",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "5.2.2"
},
"dependencies": {
"warp-contracts": "1.4.22",
"warp-contracts-plugin-deploy": "^1.0.8",
"warp-contracts-plugin-vrf": "^1.0.4",
"zod": "^3.22.4"
}
}