-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 2.12 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
{
"name": "ethpaymaster_dashboard_frontend",
"version": "0.1.0",
"private": true,
"scripts": {
"tailwind:dev": "tailwindcss build public/styles/tailwind.css -o public/styles/tailwind.output.css",
"tailwind:build": "cross-env NODE_ENV=production postcss public/styles/tailwind.css -o public/styles/tailwind.output.css",
"tailwind:watch": "npx tailwindcss -i ./public/styles/tailwind.css -o ./public/styles/tailwind.output.css --watch",
"dev": "cross-env NODE_ENV=development dotenv -e etc/secrets/.env.local -- next dev",
"build:dev": "cross-env NODE_ENV=production dotenv -e etc/secrets/.env.development -- next build",
"start:dev": "cross-env NODE_ENV=production dotenv -e etc/secrets/.env.development -- next start",
"build": "cross-env NODE_ENV=production dotenv -e etc/secrets/.env.production -- next build",
"start": "cross-env NODE_ENV=production dotenv -e etc/secrets/.env.production -- next start",
"lint": "next lint"
},
"dependencies": {
"@rainbow-me/rainbowkit": "^2.1.2",
"@tanstack/react-query": "^5.45.1",
"@tanstack/react-table": "^8.17.3",
"@uiw/react-json-view": "^2.0.0-alpha.24",
"@windmill/react-ui": "^0.6.0",
"ag-grid-react": "^31.3.2",
"axios": "^1.6.8",
"chart.js": "^4.4.3",
"copy-to-clipboard": "^3.3.3",
"date-fns": "^3.6.0",
"dotenv-cli": "^7.4.2",
"ethers": "^6.13.1",
"next": "14.1.4",
"primereact": "^10.6.6",
"react": "^18",
"react-chartjs-2": "^5.2.0",
"react-datepicker": "^7.2.0",
"react-dom": "^18",
"react-is": "^18.3.1",
"react-select": "^5.8.0",
"react-table": "^7.8.0",
"recharts": "^2.12.7",
"sass": "^1.77.2",
"tailwind-datepicker-react": "^1.4.3",
"viem": "^2.16.1",
"wagmi": "^2.10.4"
},
"devDependencies": {
"@svgr/webpack": "^8.1.0",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"autoprefixer": "^10.0.1",
"cross-env": "^7.0.3",
"dotenv": "^16.4.5",
"eslint": "^8",
"eslint-config-next": "14.1.4",
"postcss": "^8",
"react-table": "^7.8.0",
"tailwindcss": "^3.3.0",
"typescript": "^5"
}
}