-
Notifications
You must be signed in to change notification settings - Fork 117
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.57 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 1.57 KB
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
{
"dependencies": {
"@hookform/resolvers": "^5.2.2",
"date-fns": "^4.1.0",
"react-error-boundary": "^6.1.2",
"react-webcam": "^7.2.0"
},
"devDependencies": {
"@biomejs/biome": "2.4.5",
"@biomejs/cli-darwin-x64": "2.4.5",
"@commitlint/cli": "^21.0.2",
"@commitlint/config-conventional": "^21.0.2",
"@types/bun": "1.3.14",
"@types/react": "19.2.7",
"@types/react-dom": "19.2.3",
"@types/web-push": "^3.6.4",
"autoprefixer": "^10.4.21",
"husky": "^9.1.7",
"postcss": "^8.5.6",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-preset-env": "^11.3.0",
"tailwindcss": "^4.1.4"
},
"engines": {
"bun": "1.3.14"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"name": "kindfi",
"packageManager": "bun@1.3.14",
"overrides": {
"@types/react": "19.2.7",
"@types/react-dom": "19.2.3"
},
"peerDependencies": {
"typescript": "^6.0.3"
},
"private": true,
"scripts": {
"clean": "git clean -xdf node_modules",
"clean:node_modules": "find . -name 'node_modules' -type d -prune -exec rm -rf '{}' +",
"format-and-lint": "biome ci .",
"format-and-lint:fix": "biome check . --write",
"lint": "biome ci .",
"lint:fix": "biome check . --write",
"husky:prepare": "husky",
"init": "bun install && bun husky:prepare",
"prepare": "husky"
},
"version": "0.0.1",
"workspaces": {
"nohoist": [
"**/cbw-sdk",
"**/cbw-sdk/**",
"**/wagmi",
"**/pino-pretty",
"**/wagmi/**",
"**/pino-pretty/**"
],
"packages": [
"apps/*",
"services/*",
"packages/*"
]
},
"module": "index.ts",
"type": "module"
}