forked from bancorprotocol/carbon-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
124 lines (124 loc) · 3.79 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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "carbon-app",
"version": "0.1.1",
"private": true,
"dependencies": {
"@babel/core": "^7.0.0-0",
"@bancor/carbon-sdk": "^0.0.97-DEV",
"@cloudflare/workers-types": "^4.20230717.0",
"@ethersproject/abi": "^5.0.0",
"@ethersproject/bytes": "^5.0.0",
"@ethersproject/providers": "^5.7.1",
"@floating-ui/react": "^0.25.4",
"@playwright/test": "^1.43.1",
"@sentry/react": "^7.48.0",
"@sentry/vite-plugin": "^0.7.2",
"@tanstack/react-query": "^5.40.1",
"@tanstack/react-query-devtools": "^5.40.1",
"@tanstack/react-router": "^1.4.9",
"@tanstack/react-table": "^8.9.3",
"@tanstack/react-virtual": "^3.0.0-beta.30",
"@tanstack/router-devtools": "^1.4.9",
"@testing-library/dom": "^10.2.0",
"@testing-library/jest-dom": "^6.4.6",
"@testing-library/react": "^16.0.0",
"@testing-library/user-event": "^14.5.2",
"@tippyjs/react": "^4.2.6",
"@typechain/ethers-v5": "^10.1.0",
"@types/body-scroll-lock": "^3.1.0",
"@types/lodash": "4.14.191",
"@types/node": "^20.0.0",
"@types/numeral": "^2.0.2",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@types/ua-parser-js": "^0.7.36",
"@typescript-eslint/eslint-plugin": "^5.59.9",
"@typescript-eslint/parser": "^5.59.9",
"@vitejs/plugin-react": "^4.3.1",
"autoprefixer": "^10.4.12",
"body-scroll-lock": "^4.0.0-beta.0",
"buffer": "^6.0.3",
"class-variance-authority": "^0.2.4",
"clsx": "^1.2.1",
"comlink": "^4.4.1",
"crypto-browserify": "^3.12.0",
"culori": "^4.0.1",
"d3": "^7.8.5",
"date-fns": "^3.3.1",
"dayjs": "^1.11.7",
"decimal.js": "^10.4.2",
"dotenv": "^16.3.1",
"eslint": "^8.42.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-jest-dom": "^5.4.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-unused-imports": "^2.0.0",
"ethers": "^5.1.3",
"framer-motion": "7.6.7",
"fuse.js": "^6.6.2",
"graphemer": "^1.4.0",
"highcharts": "^11.1.0",
"highcharts-react-official": "^3.2.0",
"husky": "^8.0.3",
"jsdom": "^21.1.1",
"lint-staged": "^14.0.1",
"lodash": "^4.17.21",
"lz-string": "^1.5.0",
"mipd": "^0.0.7",
"numbro": "^2.3.6",
"numeral": "^2.0.6",
"postcss": "^8.4.31",
"prettier": "^2.7.1",
"prettier-plugin-tailwindcss": "^0.1.13",
"react": "^18.2.0",
"react-day-picker": "^8.10.0",
"react-dom": "^18.2.0",
"source-map-explorer": "^2.5.3",
"tailwind-merge": "^2.2.2",
"tailwindcss": "3.4.3",
"typechain": "^8.1.0",
"typescript": "^5.3.3",
"ua-parser-js": "^1.0.35",
"valibot": "^0.28.1",
"viem": "2.x",
"vite": "5.3.2",
"vite-plugin-svgr": "^2.4.0",
"vite-tsconfig-paths": "^4.2.1",
"vitest": "^1.6.0",
"wagmi": "2.9.10",
"web-vitals": "^2.1.0"
},
"scripts": {
"compile-abis": "typechain --target ethers-v5 --out-dir \"src/abis/types\" \"src/abis/**/*.json\"",
"prepare": "yarn husky install",
"analyze": "source-map-explorer 'build/static/js/*.js'",
"start": "vite",
"prebuild": "yarn compile-abis",
"build": "tsc && vite build",
"serve": "vite preview",
"pretest": "yarn compile-abis",
"test": "vitest run --mode production",
"pree2e": "yarn playwright install --with-deps chromium",
"e2e": "playwright test",
"lint": "eslint --ext .tsx,.ts .",
"pre-commit": "yarn lint-staged",
"e2e:report": "npx playwright show-report e2e/playwright-report"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@types/d3": "^7.4.3"
}
}