-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 3.51 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "@op-games/scaffold",
"version": "0.4.0",
"keywords": [
"ethereum",
"react",
"uniswap",
"workspaces",
"yarn"
],
"private": true,
"scripts": {
"@🔖🔖🔖🔖🔖 default smart contract commands 🔖🔖🔖🔖🔖 ": "echo 🔖🔖🔖🔖🔖 ",
"compile": "yarn workspace @op-games/solidity-ts exec forge compile",
"test": "yarn workspace @op-games/solidity-ts exec forge test",
"deploy": "yarn workspace @op-games/solidity-ts exec deploy_nft.bat",
"chain": "yarn workspace @op-games/solidity-ts exec anvil",
"install:foundry": "yarn workspace @op-games/solidity-ts exec foundryup && yarn forge install",
"@🔖🔖🔖🔖🔖 nextjs 🔖🔖🔖🔖🔖 ": "echo 🔖🔖🔖🔖🔖",
"dev": "yarn workspace @op-games/nextjs-app-ts dev",
"build": "yarn workspace @op-games/nextjs-app-ts build",
"start": "yarn workspace @op-games/nextjs-app-ts start",
"@🔖🔖🔖🔖🔖 blacksmith 🔖🔖🔖🔖🔖 ": "echo 🔖🔖🔖🔖🔖",
"blacksmith": "yarn workspace @op-games/blacksmith dev",
"@🔖🔖🔖🔖🔖 toolkit commands 🔖🔖🔖🔖🔖 ": "echo 📖 scripts & commands",
"hardhat": "yarn workspace @op-games/solidity-ts hardhat",
"forge": "yarn workspace @op-games/solidity-ts exec forge",
"cast": "yarn workspace @op-games/solidity-ts exec cast",
"anvil": "yarn workspace @op-games/solidity-ts exec anvil"
},
"workspaces": {
"packages": [
"packages/common",
"packages/solidity-ts",
"packages/nextjs-app-ts",
"packages/blacksmith",
"packages/subgraph",
"packages/services/*",
"packages/*"
]
},
"packageManager": "[email protected]",
"devDependencies": {
"chalk": "^4.1.2",
"commander": "^9.4.0",
"cross-env": "^7.0.3",
"eslint": "^8.23.1",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"prettier-plugin-solidity": "^1.0.0-dev.23",
"shx": "^0.3.4",
"syncpack": "^8.2.4",
"ts-node": "^10.9.1"
},
"lint-staged": {
"packages/nextjs-app-ts/src/**/*.{ts,tsx}": [
"yarn workspace @op-games/nextjs-app-ts lint --fix",
"yarn workspace @op-games/nextjs-app-ts format"
],
"packages/common/src/**/*.{ts,tsx}": [
"yarn workspace @op-games/common lint --fix",
"yarn workspace @op-games/common format"
],
"packages/solidity-ts/tests/**/*.ts": [
"yarn workspace @op-games/solidity-ts lint --fix",
"yarn workspace @op-games/solidity-ts format"
],
"packages/solidity-ts/helpers/**/*.ts": [
"yarn workspace @op-games/solidity-ts lint --fix",
"yarn workspace @op-games/solidity-ts format"
],
"packages/solidity-ts/tasks/**/*.ts": [
"yarn workspace @op-games/solidity-ts lint --fix",
"yarn workspace @op-games/solidity-ts format"
],
"packages/solidity-ts/deploy/**/*.ts": [
"yarn workspace @op-games/solidity-ts lint --fix",
"yarn workspace @op-games/solidity-ts format"
],
"packages/solidity-ts/**/*.sol": [
"yarn workspace @op-games/solidity-ts format",
"yarn workspace @op-games/solidity-ts solhint --fix"
]
},
"volta": {
"node": "16.15.0"
}
}