-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.18 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.18 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
{
"name": "code-contest",
"private": true,
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,}\"",
"check-types": "turbo run check-types",
"prepare": "husky"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"devDependencies": {
"husky": "^9.1.7",
"lint-staged": "^16.1.6",
"prettier": "3.6.2",
"turbo": "^2.5.6",
"typescript": "5.9.2"
},
"engines": {
"node": ">=18"
},
"packageManager": "bun@1.2.18",
"workspaces": [
"apps/*",
"packages/*"
],
"dependencies": {
"@hookform/resolvers": "^5.2.1",
"@inngest/agent-kit": "^0.9.0",
"@notionhq/client": "^5.0.0",
"@radix-ui/react-tabs": "^1.1.13",
"@types/bcrypt": "^6.0.0",
"@types/cors": "^2.8.19",
"@types/jsonwebtoken": "^9.0.10",
"axios": "^1.11.0",
"bcrypt": "^6.0.0",
"cors": "^2.8.5",
"express-rate-limit": "^8.0.1",
"inngest": "^3.40.2",
"ioredis": "^5.7.0",
"jsonwebtoken": "^9.0.2",
"notion-to-md": "^3.1.9",
"react-hook-form": "^7.62.0",
"redis": "^5.8.2",
"totp-generator": "^1.0.0"
}
}