-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
94 lines (94 loc) · 2.7 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "new-useful",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"preview": "next build && next start",
"lint": "biome check --apply .",
"test": "vitest run",
"test:ui": "vitest --ui",
"test:watch": "vitest",
"type-check": "tsc --noEmit --incremental false",
"prepare": "husky install"
},
"dependencies": {
"@dnd-kit/core": "^6.1.0",
"@dnd-kit/sortable": "^8.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@hookform/resolvers": "^3.3.4",
"@monaco-editor/react": "^4.6.0",
"@nobara/next": "^0.1.1",
"@radix-ui/react-alert-dialog": "^1.0.5",
"@radix-ui/react-checkbox": "^1.0.4",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-dropdown-menu": "^2.0.6",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-popover": "^1.0.7",
"@radix-ui/react-scroll-area": "^1.0.5",
"@radix-ui/react-select": "^2.0.0",
"@radix-ui/react-slider": "^1.1.2",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-switch": "^1.0.3",
"@radix-ui/react-tooltip": "^1.0.7",
"@uiw/color-convert": "^2.1.1",
"big.js": "^6.2.1",
"cmdk": "^0.2.1",
"convert": "^5.0.0",
"geist": "^1.3.0",
"hex-encoding": "^2.0.2",
"lightningcss-wasm": "^1.24.1",
"morsee": "^1.0.9",
"next": "^14.1.4",
"next-intl": "^3.10.0",
"next-themes": "^0.2.1",
"qrcode.react": "^3.1.0",
"react": "^18",
"react-colorful": "^5.6.1",
"react-dom": "^18",
"react-hook-form": "^7.51.1",
"sonner": "^1.4.41",
"valibot": "^0.29.0",
"zustand": "^4.5.2"
},
"devDependencies": {
"@biomejs/biome": "^1.6.3",
"@ducanh2912/next-pwa": "^10.2.5",
"@commitlint/cli": "^18.6.1",
"@commitlint/config-conventional": "^18.6.3",
"@commitlint/cz-commitlint": "^18.6.1",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^14.2.2",
"@testing-library/user-event": "^14.5.2",
"@types/big.js": "^6.2.2",
"@types/morsee": "^1.0.2",
"@types/node": "^20.11.30",
"@types/react": "^18.2.72",
"@types/react-dom": "^18.2.22",
"@vitejs/plugin-react": "^4.2.1",
"@vitest/ui": "^1.4.0",
"autoprefixer": "^10.4.19",
"commitizen": "^4.3.0",
"husky": "^8.0.3",
"jsdom": "^24.0.0",
"lint-staged": "^15.2.2",
"mizuhara": "^2.6.0",
"postcss": "^8.4.38",
"tailwindcss": "^3",
"typescript": "^5.4.3",
"vitest": "^1.4.0"
},
"lint-staged": {
"*": [
"biome check --no-errors-on-unmatched --files-ignore-unknown=true",
"vitest related --run --passWithNoTests --bail"
]
},
"config": {
"commitizen": {
"path": "@commitlint/cz-commitlint"
}
}
}