-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.2 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
{
"name": "url-shortener",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"sideEffects": [
"*.scss",
"*.css"
],
"dependencies": {
"@formkit/auto-animate": "^0.7.0",
"@radix-ui/react-dialog": "^1.0.4",
"@tanstack/react-query": "^4.32.0",
"@types/js-cookie": "^3.0.3",
"@upstash/redis": "^1.22.0",
"classnames": "^2.3.2",
"framer-motion": "^7.10.3",
"nanoid": "^4.0.2",
"next": "^14.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hot-toast": "^2.4.1",
"react-icons": "^4.10.1",
"sharp": "^0.31.3",
"zod": "^3.20.2"
},
"devDependencies": {
"@tailwindcss/line-clamp": "^0.4.4",
"@types/is-url": "^1.2.30",
"@types/node": "^18.17.0",
"@types/react": "^18.2.58",
"@types/react-dom": "^18.2.19",
"autoprefixer": "^10.4.14",
"eslint": "^8.45.0",
"eslint-config-next": "^14.1.0",
"eslint-config-prettier": "^8.8.0",
"postcss": "^8.4.27",
"prettier": "^2.8.8",
"prettier-plugin-tailwindcss": "^0.1.13",
"sass": "^1.64.1",
"tailwindcss": "^3.3.3",
"typescript": "^4.9.5"
}
}