-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 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
43
44
45
46
47
48
{
"name": "thatsgnarly-contracts",
"private": true,
"scripts": {
"build": "turbo run build",
"test": "turbo run test",
"dev": "turbo run dev",
"lint": "turbo run lint",
"format": "turbo run format",
"clean": "turbo run clean",
"update-version": "changeset version && turbo run update-contract-version",
"release": "turbo run build && changeset publish"
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@types/node": "^20.10.4",
"prettier": "2.8.8",
"prettier-plugin-solidity": "1.2.0",
"solhint": "3.4.1",
"turbo": "latest",
"typescript": "^5.3.3"
},
"packageManager": "pnpm@8.9.2",
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": [
"**/@openzeppelin/**",
"**/ds-test",
"**/forge-std",
"**/solmate"
]
},
"bugs": {
"url": "https://github.com/rocketman-21/thatsgnarly-contracts/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rocketman-21/thatsgnarly-contracts.git"
},
"version": "0.0.1",
"dependencies": {
"@wagmi/cli": "^2.1.0",
"glob": "^10.3.10",
"pathe": "^1.1.2"
}
}