-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
81 lines (81 loc) · 2.24 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
{
"name": "all-option-chain",
"version": "0.1.0",
"private": true,
"author": "Anurag Roy <anuragroy@duck.com> (https://anuragroy.dev)",
"license": "MIT",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"data:prepare": "rimraf src/data/data.db && tsx src/data/setup.ts",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md}\""
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.11",
"@types/lodash-es": "^4.17.12",
"@types/node": "^20.16.1",
"@types/react": "^18.3.4",
"@types/react-dom": "^18.3.0",
"@types/ws": "^8.5.12",
"autoprefixer": "^10.4.20",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.6",
"rimraf": "^6.0.1",
"tsx": "^4.17.0",
"typescript": "^5.5.4"
},
"dependencies": {
"@hookform/resolvers": "^3.9.0",
"@prisma/client": "^5.18.0",
"@radix-ui/react-avatar": "^1.1.0",
"@radix-ui/react-dialog": "^1.1.1",
"@radix-ui/react-dropdown-menu": "^2.1.1",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-popover": "^1.1.1",
"@radix-ui/react-select": "^2.1.1",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-switch": "^1.1.1",
"@radix-ui/react-toast": "^1.2.1",
"@radix-ui/react-tooltip": "^1.1.2",
"@tanstack/react-table": "^8.20.1",
"better-sqlite3": "^11.2.1",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"cmdk": "^0.2.1",
"jszip": "^3.10.1",
"ky": "^1.7.1",
"lodash-es": "^4.17.21",
"next": "^14.2.6",
"next-themes": "^0.3.0",
"p-queue": "^8.0.1",
"postcss": "^8.4.41",
"prisma": "^5.18.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-hook-form": "^7.52.2",
"tailwind-merge": "^2.5.2",
"tailwindcss": "^3.4.10",
"tailwindcss-animate": "^1.0.7",
"totp-generator": "^1.0.0",
"ws": "^8.18.0",
"zod": "^3.23.8",
"zustand": "^4.5.5"
},
"prisma": {
"schema": "src/data/schema.prisma"
},
"prettier": {
"printWidth": 120,
"useTabs": false,
"tabWidth": 2,
"trailingComma": "es5",
"singleQuote": true,
"semi": true,
"jsxSingleQuote": true,
"plugins": [
"prettier-plugin-tailwindcss"
]
}
}