-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.44 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 loc) · 2.44 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "syntrix_os",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev ",
"tunnel": "cloudflared tunnel --url http://localhost:3000",
"dev:tunnel": "concurrently \"npm run dev\" \"npm run tunnel\"",
"build": "next build",
"start": "next start",
"test": "vitest",
"test:watch": "vitest --watch ",
"test:ci": "vitest run --passWithNoTests",
"db:migrate": "tsx scripts/migrate.ts up",
"db:migrate:status": "tsx scripts/migrate.ts status",
"db:migrate:rollback": "tsx scripts/migrate.ts down",
"commit": "git cz",
"prepare": "husky install",
"lint:eslint": "eslint .",
"lint:prettier:check": "prettier --check .",
"lint:prettier:write": "prettier --write ."
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"eslint --fix",
"prettier --write"
]
},
"dependencies": {
"@clerk/backend": "^3.2.13",
"@clerk/localizations": "^4.5.2",
"@clerk/nextjs": "^7.2.3",
"@clerk/types": "^4.101.20",
"@dnd-kit/core": "^6.1.0",
"@dnd-kit/sortable": "^8.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@phosphor-icons/react": "^2.1.10",
"bcrypt": "^6.0.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cors": "^2.8.6",
"express": "^5.2.1",
"framer-motion": "^12.38.0",
"jsonwebtoken": "^9.0.3",
"lucide-react": "^1.8.0",
"next": "16.2.4",
"postgres": "^3.4.9",
"radix-ui": "^1.4.3",
"react": "19.2.5",
"react-dom": "19.2.5",
"shadcn": "^4.3.0",
"svix": "^1.90.0",
"tailwind-merge": "^3.5.0",
"tw-animate-css": "^1.4.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@commitlint/cli": "^20.5.0",
"@commitlint/config-conventional": "^20.5.0",
"@next/env": "16.2.4",
"@tailwindcss/postcss": "^4",
"@testing-library/dom": "^10.4.1",
"@testing-library/react": "^16.3.2",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/node": "^25",
"@types/react": "^19",
"@types/react-dom": "^19",
"@vitejs/plugin-react": "^6.0.1",
"commitizen": "^4.3.1",
"concurrently": "^9.2.1",
"cz-conventional-changelog": "^3.3.0",
"dotenv": "^17.4.2",
"eslint": "^9.39.4",
"eslint-config-next": "16.2.4",
"husky": "^9.1.7",
"jsdom": "^29.0.2",
"nodemon": "^3.1.14",
"prettier": "^3.8.3",
"tailwindcss": "^4",
"tsx": "^4.22.4",
"typescript": "^5",
"vite-tsconfig-paths": "^6.1.1",
"vitest": "^4.1.4"
}
}