forked from kindfi-org/kindfi
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.34 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.34 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
{
"dependencies": {
"date-fns": "^4.1.0",
"react-error-boundary": "^5.0.0",
"react-webcam": "^7.2.0"
},
"devDependencies": {
"@biomejs/biome": "^2.1.2",
"@biomejs/cli-darwin-x64": "^2.1.2",
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@types/bun": "1.2.21",
"@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": "^10.2.4",
"tailwindcss": "^4.1.4"
},
"engines": {
"bun": "1.2.21"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"name": "kindfi",
"packageManager": "bun@1.2.21",
"peerDependencies": {
"typescript": "^5.8.2"
},
"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 check .",
"format-and-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"
}