-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
89 lines (89 loc) · 3.12 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
{
"name": "space",
"version": "0.2.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"test:unit": "jest __tests__/unit-tests",
"test:unit:watch": "jest __tests__/unit-tests --watch",
"lint": "next lint",
"lint:fix": "next lint --fix",
"lint:strict": "next lint '*/**/*.{js,jsx,ts,tsx}'",
"format": "prettier . --write",
"db:generate": "drizzle-kit generate --config=./drizzle.config.ts",
"db:migrate": "drizzle-kit migrate --config=./drizzle.config.ts",
"db:migrate:prod": "cross-env NODE_ENV=production dotenvx run -f .env.production.local -- drizzle-kit migrate --config=./drizzle.config.ts",
"db:push": "drizzle-kit push --config=./drizzle.config.ts",
"db:push:prod": "cross-env NODE_ENV=production dotenvx run -f .env.production.local -- drizzle-kit push --config=./drizzle.config.ts",
"db:studio": "drizzle-kit studio --config=./drizzle.config.ts",
"prepare": "husky"
},
"dependencies": {
"@dotenvx/dotenvx": "^1.20.0",
"@next/env": "15.0.2",
"@radix-ui/react-alert-dialog": "^1.1.2",
"@radix-ui/react-checkbox": "^1.1.2",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-popover": "^1.1.2",
"@radix-ui/react-separator": "^1.1.0",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-tabs": "^1.1.1",
"@radix-ui/react-tooltip": "^1.1.3",
"@sentry/nextjs": "^8.34.0",
"@svgr/webpack": "^8.1.0",
"@tailwindcss/typography": "^0.5.15",
"class-variance-authority": "^0.7.0",
"cloudinary": "^2.5.1",
"clsx": "^2.1.1",
"drizzle-orm": "^0.35.1",
"highlight.js": "^11.10.0",
"highlight.svelte": "^0.0.5",
"isomorphic-dompurify": "^2.16.0",
"jose": "^5.9.4",
"marked": "^14.1.3",
"marked-highlight": "^2.2.0",
"next": "15.0.2",
"postgres": "^3.4.4",
"react": "19.0.0-rc-02c0e824-20241028",
"react-dom": "19.0.0-rc-02c0e824-20241028",
"server-only": "^0.0.1",
"slugify": "^1.6.6",
"tailwind-gradient-mask-image": "^1.2.0",
"tailwind-merge": "^2.5.4",
"tailwind-scrollbar": "^3.1.0",
"tailwindcss": "^3.4.14",
"tailwindcss-animate": "^1.0.7",
"zod": "^3.23.8"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.2",
"@testing-library/react": "^16.0.1",
"@types/jest": "^29.5.13",
"@types/node": "^22",
"@types/react": "npm:[email protected]",
"@types/react-dom": "npm:[email protected]",
"cross-env": "^7.0.3",
"drizzle-kit": "^0.26.2",
"eslint": "^8.57.1",
"eslint-config-next": "15.0.2",
"eslint-config-prettier": "^9.1.0",
"husky": "^9.1.6",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^15.2.10",
"postcss": "^8",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.8",
"ts-node": "^10.9.2",
"typescript": "^5.6.3"
},
"overrides": {
"@types/react": "npm:[email protected]",
"@types/react-dom": "npm:[email protected]"
}
}