-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
42 lines (42 loc) · 1.15 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
{
"private": true,
"name": "wrc",
"workspaces": {
"packages": [
"contracts/*",
"utils",
"examples/*"
],
"nohoist": [
"**/arlocal",
"**/arlocal/**"
]
},
"scripts": {
"build:atomic-asset-rust": "yarn workspace atomic-asset-rust build",
"build:atomic-asset-typescript": "yarn workspace atomic-asset-typescript build",
"test:atomic-asset": "yarn workspace atomic-asset-test test",
"build:erc20": "yarn workspace erc20 build",
"test:erc20": "yarn workspace erc20 test",
"build:pst": "yarn workspace pst build",
"test:pst": "yarn workspace pst test",
"build:example:staking": "yarn workspace staking build",
"run:example:staking": "yarn workspace staking advanced:mainnet",
"test:example:staking": "yarn workspace staking test"
},
"dependencies": {
"@types/jest": "28.1.6",
"@types/node": "18.0.6",
"arlocal": "1.1.60",
"arweave": "1.11.4",
"ts-jest": "^28.0.7",
"typescript": "^4.7.4",
"warp-contracts": "1.3.1",
"warp-contracts-plugin-deploy": "^1.0.1",
"yargs": "17.5.1"
},
"resolutions": {
"jest": "28.1.3"
},
"devDependencies": {}
}