forked from osamajavaid/portfolio
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.52 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.52 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
{
"name": "portfolio",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "prisma generate && next build",
"start": "next start",
"lint": "next lint",
"analyze": "ANALYZE=true next build",
"db:seed": "node prisma/seed.js",
"db:studio": "prisma studio",
"db:migrate": "prisma migrate dev",
"db:generate": "prisma generate",
"postinstall": "prisma generate"
},
"dependencies": {
"@ethersproject/providers": "^5.7.2",
"@next/bundle-analyzer": "^13.1.1",
"@next/font": "13.1.1",
"@prisma/client": "^5.22.0",
"@web3-react/core": "^8.1.0",
"antd": "^5.6.1",
"autoprefixer": "^10.4.13",
"axios": "^1.3.4",
"daisyui": "^3.9.4",
"framer-motion": "^10.16.4",
"next": "13.1.1",
"next-i18next": "^13.2.0",
"next-themes": "^0.2.1",
"postcss": "^8.4.20",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-error-boundary": "^4.0.11",
"react-icons": "^4.7.1",
"react-query": "^3.39.3",
"react-scroll": "^1.8.9",
"react-tooltip": "^5.7.4",
"sass": "^1.64.2",
"tailwindcss": "^3.2.4",
"tailwindcss-textshadow": "^2.1.0",
"typewriter-effect": "^2.21.0"
},
"devDependencies": {
"@types/node": "^18.0.0",
"@types/react": "^18.0.0",
"autoprefixer": "^10.4.13",
"eslint": "8.30.0",
"eslint-config-next": "13.1.1",
"postcss": "^8.4.20",
"prisma": "^5.22.0",
"tailwindcss": "^3.2.4",
"typescript": "^5.0.4"
}
}