forked from unifralabs/scroll-explorer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
109 lines (109 loc) · 2.95 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "unifra-scan",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"predev": "prisma generate",
"prebuild": "prisma generate",
"prisma:pull": "prisma db pull",
"prisma:push": "prisma db push",
"prisma:migrate": "prisma migrate deploy"
},
"dependencies": {
"@ant-design/icons": "^4.7.0",
"@ethersproject/address": "^5.7.0",
"@ethersproject/bytes": "^5.7.0",
"@prisma/client": "^4.12.0",
"@reduxjs/toolkit": "^1.8.6",
"@tanstack/react-query": "^4.28.0",
"@trpc/client": "^10.19.1",
"@trpc/next": "^10.19.1",
"@trpc/react-query": "^10.19.1",
"@trpc/server": "^10.19.1",
"abitype": "^0.8.0",
"ace-builds": "^1.12.5",
"antd": "^5.0.6",
"bignumber.js": "^9.1.0",
"bullmq": "^3.10.4",
"classnames": "^2.3.2",
"dayjs": "^1.11.6",
"eslint": "8.26.0",
"eslint-config-next": "13.0.2",
"ethers": "^5",
"hex-rgb": "^5.0.0",
"ioredis": "^5.3.1",
"next": "13.0.2",
"next-redux-wrapper": "^8.0.0",
"nextjs-cors": "^2.1.2",
"prettier": "^2.7.1",
"prism-react-renderer": "^2.0.3",
"prop-types": "^15.8.1",
"qrcode.react": "^3.1.0",
"query-string": "^7.1.1",
"react": "18.2.0",
"react-ace": "^10.1.0",
"react-copy-to-clipboard": "^5.1.0",
"react-custom-scrollbars": "^4.2.1",
"react-dom": "18.2.0",
"react-hook-form": "^7.43.9",
"react-modal-better-hooks": "^1.7.1",
"react-redux": "^8.0.5",
"react-router-dom": "^6.4.3",
"recharts": "^2.1.16",
"sass": "^1.56.0",
"sharp": "^0.31.2",
"shortid": "^2.2.16",
"superjson": "^1.12.2",
"timeago.js": "^4.0.2",
"trpc-openapi": "^1.1.2",
"typescript": "4.8.4",
"wagmi": "^0.12.12",
"zod": "^3.21.4"
},
"devDependencies": {
"@svgr/webpack": "^6.5.1",
"@trivago/prettier-plugin-sort-imports": "^3.4.0",
"@types/node": "18.11.9",
"@types/react": "18.0.24",
"@types/react-copy-to-clipboard": "^5.0.4",
"@types/react-custom-scrollbars": "^4.0.10",
"@types/react-dom": "18.0.8",
"@types/shortid": "^0.0.29",
"babel-plugin-import": "^1.13.5",
"prisma": "^4.12.0",
"url-loader": "^4.1.1",
"windicss": "^3.5.6",
"windicss-webpack-plugin": "^1.7.7"
},
"prettier": {
"printWidth": 160,
"singleQuote": true,
"semi": false,
"trailingComma": "none",
"bracketSpacing": true,
"arrowParens": "avoid",
"htmlWhitespaceSensitivity": "css",
"jsxBracketSameLine": true,
"endOfLine": "auto",
"plugins": [
"@trivago/prettier-plugin-sort-imports"
],
"importOrder": [
"^react(.*)$",
"^@reduxjs/(.*)$",
"<THIRD_PARTY_MODULES>",
"@/styles/globals.css",
"^@/",
"^@imgs/(.*)$",
"^[./]((?!scss|css|less).)*$",
".(scss|less)$",
".(css)$"
],
"importOrderSeparation": true,
"importOrderSortSpecifiers": true
}
}