-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.84 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.84 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
56
57
58
59
60
61
62
63
{
"name": "smartFrogFund-web",
"private": true,
"version": "0.0.1",
"scripts": {
"sawgger": "ts-node src/lib/server.ts",
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format": "eslint --fix ./src"
},
"dependencies": {
"@ant-design/nextjs-registry": "^1.0.0",
"@prisma/client": "5.13.0",
"@rainbow-me/rainbowkit": "^2.0.2",
"@tanstack/react-query": "^5.28.4",
"@types/jsonwebtoken": "^9.0.6",
"antd": "^5.16.5",
"dayjs": "^1.11.11",
"husky": "^9.0.11",
"jose": "^5.3.0",
"jsonwebtoken": "^9.0.2",
"lint-staged": "^15.2.5",
"mobx": "5.15.7",
"mobx-react": "6.3.1",
"mongodb": "^6.6.1",
"next": "^14.1.3",
"next-swagger-doc": "^0.4.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sass": "^1.77.4",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.0",
"swagger-ui-react": "^5.3.2",
"viem": "^2.9.27",
"wagmi": "^2.5.11"
},
"devDependencies": {
"@types/node": "^18.19.3",
"@types/react": "^18.3.0",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-express": "^4.1.6",
"@types/swagger-ui-react": "^4.18.3",
"autoprefixer": "^10.4.19",
"eslint": "^8.15.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-next": "^14.1.3",
"next": "^14.1.3",
"postcss": "^8.4.38",
"prisma": "^5.13.0",
"tailwindcss": "^3.4.3",
"ts-node": "^10.9.2",
"typescript": "5.4.2"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "eslint --fix",
"*.{js,jsx,ts,tsx,json,css,scss,md}": "eslint --fix"
},
"engines": {
"node": ">=18.0.0"
}
}