forked from Harmonia-Development/harmonia-dapp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1023 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 1023 Bytes
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
{
"name": "Harmonia DAO Management",
"version": "0.0.1",
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@types/bun": "latest",
"husky": "^9.1.7"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"engines": {
"bun": "1.x"
},
"packageManager": "bun@1.1.20",
"private": true,
"scripts": {
"init": "bun install && bun run husky:prepare",
"husky:prepare": "husky install",
"format-and-lint": "biome check .",
"format-and-lint:fix": "biome check . --write",
"clean": "git clean -xdf node_modules",
"clean:node_modules": "find . -name 'node_modules' -type d -prune -exec rm -rf '{}' +",
"prepare": "[ \"$VERCEL\" != \"1\" ] && husky install || echo \"Skipping husky install\""
},
"workspaces": {
"packages": ["apps/*", "services/*", "packages/*"],
"nohoist": [
"**/cbw-sdk",
"**/cbw-sdk/**",
"**/wagmi",
"**/pino-pretty",
"**/wagmi/**",
"**/pino-pretty/**"
]
},
"dependencies": {}
}