forked from d-EURO/dapp
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 3.38 KB
/
package.json
File metadata and controls
108 lines (108 loc) · 3.38 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
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
{
"name": "juicedollar-dapp",
"version": "3.0.0",
"private": false,
"license": "MIT",
"scripts": {
"dev": "yarn install && next dev",
"build": "next build",
"export": "next export",
"start": "next start",
"test": "react-scripts test",
"test:e2e": "playwright test tests/e2e/specs/navigation.spec.ts tests/e2e/specs/ui.spec.ts",
"test:e2e:visual": "playwright test tests/e2e/specs/visual.spec.ts",
"test:e2e:visual:update": "playwright test tests/e2e/specs/visual.spec.ts --update-snapshots",
"test:e2e:wallet": "playwright test tests/e2e/specs/wallet/",
"setup:synpress": "bash scripts/setup-synpress.sh",
"test:e2e:all": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:headed": "playwright test --headed",
"test:e2e:debug": "playwright test --debug",
"test:e2e:report": "playwright show-report",
"eject": "react-scripts eject",
"lint": "next lint",
"lint:check": "prettier --check .",
"lint:fix": "prettier --write .",
"prettier-watch": "onchange \"**/*\" -- prettier --write --ignore-unknown {{changed}}",
"deploy": "gh-pages -d build",
"docker": "next build && next start",
"prepare": "husky"
},
"dependencies": {
"@apollo/client": "^3.8.0",
"@coinbase/wallet-sdk": "^4.3.7",
"@ethersproject/units": "^5.7.0",
"@fortawesome/fontawesome-svg-core": "^6.4.2",
"@fortawesome/free-brands-svg-icons": "^6.4.2",
"@fortawesome/free-solid-svg-icons": "^6.4.2",
"@fortawesome/react-fontawesome": "^0.2.0",
"@juicedollar/api": "^3.0.0",
"@juicedollar/jusd": "^3.0.0",
"@metamask/sdk": "^0.34.0",
"@reduxjs/toolkit": "^2.2.5",
"@tanstack/react-query": "^5.40.0",
"@types/node": "18.11.11",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@vercel/analytics": "^1.1.1",
"@web3modal/wagmi": "^4.2.3",
"abitype": "^0.9.6",
"apexcharts": "^3.44.0",
"axios": "^1.13.2",
"coingecko-api-v3": "^0.0.29",
"dayjs": "^1.11.9",
"eslint": "8.29.0",
"eslint-config-next": "^13.5.3",
"graphql": "^16.8.1",
"i18next": "^24.2.2",
"next": "^14.1.4",
"next-i18next": "^15.4.2",
"next-seo": "^5.15.0",
"react": "^18.2.0",
"react-apexcharts": "^1.4.1",
"react-datepicker": "^6.1.0",
"react-dom": "^18.2.0",
"react-i18next": "^15.4.0",
"react-redux": "^9.1.2",
"react-select": "^5.8.0",
"react-toastify": "^9.1.3",
"typechain": "^8.1.1",
"viem": "2.21.0",
"wagmi": "2.12.0"
},
"devDependencies": {
"@babel/core": "^7.20.5",
"@playwright/test": "1.48.2",
"@synthetixio/synpress": "^4.1.1",
"@types/react-datepicker": "^6.2.0",
"autoprefixer": "^10.4.14",
"babel-loader": "^8.3.0",
"dotenv": "^17.2.3",
"flowbite": "^2.3.0",
"flowbite-datepicker": "^1.2.6",
"flowbite-react": "^0.7.3",
"fs-extra": "^11.3.3",
"gh-pages": "^6.0.0",
"husky": "^9.1.7",
"lint-staged": "16",
"node-fetch": "^3.3.2",
"playwright-core": "1.48.2",
"postcss": "^8.4.19",
"prettier": "^2.8.1",
"tailwindcss": "^3.3.3",
"ts-loader": "^9.5.1",
"typescript": "^5.1.6",
"unzipper": "^0.12.3"
},
"resolutions": {
"@types/react": "^18.3.0",
"@types/react-dom": "18.3.0",
"@playwright/test": "1.48.2",
"playwright": "1.48.2",
"playwright-core": "1.48.2"
},
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e",
"lint-staged": {
"*.{ts,tsx,js,jsx,json,md,css}": "prettier --write"
}
}