-
Notifications
You must be signed in to change notification settings - Fork 51
/
Copy pathpackage.json
48 lines (48 loc) · 1.03 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": "kindfi",
"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"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"packageManager": "bun@1.1.20",
"private": true,
"scripts": {
"init": "bun install && bun husky:prepare",
"husky:prepare": "husky",
"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": "husky"
},
"workspaces": {
"packages": ["apps/*", "services/*", "packages/*"],
"nohoist": [
"**/cbw-sdk",
"**/cbw-sdk/**",
"**/wagmi",
"**/pino-pretty",
"**/wagmi/**",
"**/pino-pretty/**"
]
},
"dependencies": {
"date-fns": "^4.1.0",
"react-webcam": "^7.2.0"
}
}