-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.16 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
{
"name": "assignment-nextjs",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"dev:turbo": "next dev --turbo",
"build": "next build",
"start": "next start",
"lint": "next lint",
"start:db": "json-server ./src/database/db.json --watch -m ./node_modules/json-server-auth --port 9030"
},
"dependencies": {
"@cloudinary/react": "^1.11.2",
"@cloudinary/url-gen": "^1.11.2",
"@types/classnames": "^2.3.1",
"axios": "^1.5.1",
"classnames": "^2.3.2",
"cookies-next": "^4.0.0",
"json-server-auth": "^2.1.0",
"jsonwebtoken": "^9.0.2",
"next": "13.5.4",
"react": "^18",
"react-dom": "^18",
"react-icons": "^4.11.0",
"react-toastify": "^9.1.3",
"sass": "^1.69.2",
"short-unique-id": "^5.0.3",
"swr": "^2.2.4",
"zustand": "^4.4.3"
},
"devDependencies": {
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"autoprefixer": "^10",
"eslint": "^8",
"eslint-config-next": "13.5.4",
"postcss": "^8",
"prettier": "^3.0.3",
"prettier-plugin-tailwindcss": "^0.5.5",
"tailwindcss": "^3",
"typescript": "^5"
}
}