forked from nextosi/CompoundFinanceFrontend
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.8 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 2.8 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": "compound_dapp",
"version": "0.1.0",
"engines": {
"node": ">=18.0.0",
"yarn": ">=1.1.2"
},
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"prettier": "npx prettier --write **/*.{ts,js,tsx,json}",
"lint:ts": "eslint \"./src/**/*.{ts,tsx}\"",
"lint:ts:fix": "eslint \"./src/**/*.{ts,tsx}\" --fix",
"stylelint:scss": "npx stylelint \"**/*.{css,scss}\"",
"stylelint:scss:fix": "npx stylelint \"**/*.{css,scss}\" --fix",
"prepare": "husky"
},
"dependencies": {
"@chakra-ui/icons": "^2.1.1",
"@chakra-ui/next-js": "^2.2.0",
"@chakra-ui/react": "^2.8.2",
"@emotion/react": "^11.13.0",
"@emotion/styled": "^11.13.0",
"@metamask/jazzicon": "^2.0.0",
"@next/third-parties": "^15.0.3",
"@splinetool/runtime": "^1.9.32",
"@tanstack/react-query": "^5.60.2",
"axios": "^1.7.7",
"chart.js": "^4.4.3",
"encoding": "^0.1.13",
"ethers": "5.7.2",
"framer-motion": "^11.3.17",
"next": "14.2.10",
"react": "^18",
"react-chartjs-2": "^5.2.0",
"react-dom": "^18",
"react-ga4": "^2.1.0",
"react-lottie": "^1.2.4",
"react-metamask-avatar": "^2.0.9",
"slick-carousel": "^1.8.1",
"wagmi": "^2.12.0",
"zustand": "^4.5.5"
},
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.14.0",
"@svgr/webpack": "^8.1.0",
"@types/chartjs-plugin-crosshair": "^1.1.4",
"@types/mixpanel-browser": "^2.50.2",
"@types/node": "22.10.2",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/react-lottie": "^1.2.10",
"@types/react-slick": "^0.23.13",
"@typescript-eslint/eslint-plugin": "^6.13.2",
"@typescript-eslint/parser": "^8.17.0",
"eslint": "^8.57.0",
"eslint-config-next": "14.2.5",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard-with-typescript": "^43.0.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-plugin-checker": "^0.0.6",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-simple-import-sort": "^12.1.0",
"eslint-plugin-unused-imports": "^3.1.0",
"husky": "^9.1.1",
"lint-staged": "^15.2.7",
"mixpanel-browser": "^2.58.0",
"next-sitemap": "^4.2.3",
"pino-pretty": "^13.0.0",
"prettier": "^3.3.3",
"react-slick": "^0.30.3",
"sass": "^1.82.0",
"stylelint": "^16.9.0",
"stylelint-config-standard-scss": "^13.1.0",
"stylelint-order": "^6.0.4",
"stylelint-prettier": "^5.0.0",
"typescript": "^5",
"typescript-eslint": "^7.10.0"
},
"lint-staged": {
"*.{ts,tsx,json}": [
"yarn prettier --write **/*.{ts,js,tsx,json}"
],
"src/**/*.{ts,tsx}": [
"eslint --fix --quiet"
],
"**/*.{css,scss}": [
"stylelint --fix --quiet"
]
}
}