-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.81 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
{
"name": "url-shortener",
"version": "0.1.1",
"private": false,
"scripts": {
"dev": "next dev",
"build": "prisma generate && next build",
"start": "next start",
"lint": "next lint && eslint .",
"release": "standard-version",
"test": "jest",
"test:watch": "jest --watch",
"test:e2e": "playwright test",
"test:lint": "npm run lint"
},
"dependencies": {
"@mantine/core": "^7.7.0",
"@mantine/hooks": "^7.7.0",
"@prisma/client": "^5.11.0",
"@radix-ui/react-popover": "^1.0.7",
"@types/node": "20.11.30",
"@types/react": "18.2.73",
"@types/react-dom": "18.2.22",
"@vercel/analytics": "^1.2.2",
"@vercel/postgres": "^0.7.2",
"@vercel/speed-insights": "^1.0.10",
"date-fns": "^3.6.0",
"eslint": "8.57.0",
"eslint-config-next": "14.1.4",
"framer-motion": "^11.0.22",
"lucide-react": "^0.363.0",
"next": "14.1.4",
"next-auth": "^4.24.7",
"next-images": "^1.8.5",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hot-toast": "^2.4.1",
"sharp": "^0.33.3",
"typescript": "5.4.3"
},
"devDependencies": {
"@babel/core": "^7.24.3",
"@babel/preset-env": "^7.24.3",
"@babel/preset-typescript": "^7.24.1",
"@jest/globals": "^29.7.0",
"@playwright/test": "^1.42.1",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^14.2.2",
"@types/jest": "^29.5.12",
"autoprefixer": "^10.4.19",
"babel-jest": "^29.7.0",
"esm": "^3.2.25",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-mock-extended": "^3.0.5",
"postcss": "^8.4.38",
"postcss-preset-mantine": "^1.13.0",
"postcss-simple-vars": "^7.0.1",
"prisma": "^5.11.0",
"standard-version": "^9.5.0",
"tailwindcss": "^3.4.3",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2"
}
}