-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
74 lines (74 loc) · 2.2 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
{
"name": "realtoken-dashboard-v2",
"version": "2.4.1",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"typecheck": "tsc --noEmit",
"prettier:check": "prettier --check src/.",
"prettier:format": "prettier --write src/.",
"export": "next build && next export",
"docker:local": "docker compose -f docker-compose.local.yml up --force-recreate --build",
"clean:cache": "del-cli .next",
"clean:mod": "del-cli node_modules",
"clean:all": "npm run clean:cache && npm run clean:mod",
"clean:build": "npm run clean:cache && npm run build"
},
"dependencies": {
"@apollo/client": "^3.9.5",
"@mantine/core": "^7.5.3",
"@mantine/dates": "^7.5.3",
"@mantine/form": "^7.5.3",
"@mantine/hooks": "^7.5.3",
"@mantine/modals": "^7.5.3",
"@mantine/notifications": "^7.5.3",
"@realtoken/realt-commons": "1.4.6",
"@reduxjs/toolkit": "^2.2.1",
"@tabler/icons": "^1.74.0",
"@web3-react/core": "^8.0.35-beta.0",
"cookies-next": "^2.0.5",
"date-fns": "^3.3.1",
"dayjs": "^1.11.11",
"del-cli": "^6.0.0",
"dexie": "^3.2.5",
"ethers": "^6.11.1",
"graphql": "^16.6.0",
"i18next": "^22.4.13",
"jotai": "^1.11.0",
"lodash": "^4.17.21",
"moment": "^2.29.4",
"next": "12.1.5",
"react": "^18.2.0",
"react-dom": "18.2.0",
"react-i18next": "^12.2.0",
"react-query": "^3.39.3",
"react-redux": "^9.1.0",
"redux": "^5.0.1"
},
"devDependencies": {
"@babel/core": "^7.23.9",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/lodash": "^4.14.191",
"@types/node": "18.0.0",
"@types/react": "^18.2.56",
"@types/react-dom": "18.2.19",
"@types/react-redux": "^7.1.24",
"@types/redux": "^3.6.0",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"eslint": "^8.56.0",
"eslint-config-next": "^12.1.6",
"eslint-config-prettier": "^9.1.0",
"postcss": "^8.4.35",
"postcss-preset-mantine": "^1.13.0",
"postcss-simple-vars": "^7.0.1",
"prettier": "3.2.5",
"sass": "^1.71.0",
"typescript": "^5.3.3"
},
"overrides": {
"lodash": "^4.17.21"
}
}