-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.72 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "@behavior-graph/monorepo",
"version": "0.0.1",
"description": "On-chain metaverse behavior graph builder",
"private": true,
"keywords": [
"behavior",
"graph",
"flow"
],
"homepage": "http://github.com/bhouston/behave-graph",
"author": "behave-graph authors",
"bugs": {
"url": "https://github.com/bhouston/behave-graph/issues"
},
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/bhouston/behave-graph"
},
"devDependencies": {
"@openzeppelin/contracts": "^4.7.3",
"@preconstruct/cli": "^2.2.2",
"@typechain/ethers-v5": "^10.1.1",
"@typechain/hardhat": "^6.1.4",
"@babel/core": "^7.17.10",
"@babel/preset-env": "^7.17.10",
"@babel/preset-react": "^7.16.7",
"@babel/preset-typescript": "^7.16.7",
"dotenv": "^16.0.3",
"prettier": "^2.7.1",
"ts-node": ">=8.0.0",
"typechain": "^8.1.1",
"typescript": ">=4.5.0"
},
"resolutions": {
"undici": "5.5.1"
},
"scripts": {
"build-editor": "yarn workspace @behavior-graph/editor build",
"chain": "npx hardhat node",
"compile": "npx hardhat compile",
"test": "npx hardhat test",
"start": "yarn workspace @behavior-graph/editor dev",
"lint": "npx eslint \"src/**/*.{ts,json}\"",
"lint:fix": "npm run lint -- --fix",
"exec-graph": "cd framework && yarn exec-graph",
"deploy-local": "npx hardhat --network localhost run scripts/deploy.ts",
"deploy-mumbai": "npx hardhat --network mumbai run scripts/deploy.ts",
"deploy-skale": "npx hardhat --network skale run scripts/deploy.ts"
},
"workspaces": [
"packages/*",
"editor",
"scripts",
"test"
],
"preconstruct": {
"packages": [
"editor"
]
}
}