-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 3.08 KB
/
Copy pathpackage.json
File metadata and controls
95 lines (95 loc) · 3.08 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
{
"name": "fe",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "stylelint --allow-empty-input \"**/*.{css,scss}\" && next lint",
"lint:fix": "next lint --fix",
"preview": "next build && next start",
"typecheck": "tsc --noEmit",
"format:write": "prettier --write \"**/*.{ts,tsx,mdx}\" --cache",
"format:check": "prettier --check \"**/*.{ts,tsx,mdx}\" --cache",
"postinstall": "husky install",
"e2e": "start-server-and-test dev http://localhost:3000 \"cypress open --e2e\"",
"e2e:headless": "start-server-and-test dev http://localhost:3000 \"cypress run --e2e\"",
"component": "cypress open --component",
"component:headless": "cypress run --component"
},
"dependencies": {
"@apollo/client": "3.8.0-alpha.13",
"@apollo/experimental-nextjs-app-support": "^0.1.0",
"@pancakeswap/sdk": "^4.0.0",
"@radix-ui/react-select": "^1.2.2",
"@radix-ui/react-dropdown-menu": "^2.0.5",
"@reduxjs/toolkit": "^1.9.3",
"@tailwindcss/typography": "^0.5.9",
"@tanstack/react-query": "^4.27.0",
"@tanstack/react-query-devtools": "^4.27.0",
"bignumber.js": "^9.1.1",
"chart.js": "^4.3.0",
"class-variance-authority": "^0.6.0",
"clsx": "^1.2.1",
"d3-format": "^3.1.0",
"date-fns": "^2.30.0",
"date-fns-tz": "^2.0.0",
"dayjs": "^1.11.7",
"ethers": "^5.7.2",
"formik": "^2.4.0",
"framer-motion": "^10.12.16",
"graphql": "^16.8.1",
"lodash": "^4.17.21",
"lucide-react": "^0.233.0",
"next": "^13.4.4",
"next-themes": "^0.2.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hot-toast": "^2.4.1",
"react-redux": "^8.0.5",
"sass": "^1.62.1",
"tailwindcss-animate": "^1.0.5",
"wagmi": "^0.12.13",
"yup": "^1.2.0"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^3.7.1",
"@next/bundle-analyzer": "^13.3.0",
"@svgr/webpack": "^6.3.1",
"@types/bn.js": "^5.1.1",
"@types/d3-format": "^3.0.1",
"@types/lodash": "^4.14.192",
"@types/node": "20.1.3",
"@types/react": "18.2.6",
"@types/react-dom": "18.2.4",
"@typescript-eslint/eslint-plugin": "^5.59.7",
"@typescript-eslint/parser": "^5.59.7",
"autoprefixer": "10.4.14",
"bn.js": "^5.2.1",
"classnames": "^2.3.2",
"cypress": "12.3.0",
"eslint": "8.40.0",
"eslint-config-next": "13.4.2",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-tailwindcss": "^3.12.1",
"husky": "^8.0.3",
"lint-staged": "^13.2.2",
"postcss": "8.4.23",
"prettier": "^2.8.7",
"start-server-and-test": "1.15.2",
"stylelint": "^15.6.2",
"stylelint-config-prettier-scss": "^1.0.0",
"stylelint-config-standard-scss": "^9.0.0",
"tailwind-merge": "^1.13.0",
"tailwindcss": "3.3.2",
"typescript": "5.0.4"
},
"resolutions": {
"@walletconnect/ethereum-provider": "2.7.0"
}
}