-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.55 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
{
"name": "trendcaster",
"description": "trends for Farcaster",
"version": "1.0.0",
"private": true,
"author": "Madhur Shrimal <[email protected]> (@shrimalmadhur)",
"license": "MIT",
"keywords": [
"nextjs",
"farcaster",
"analytics"
],
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"type-check": "tsc",
"lint": "eslint --ignore-path .gitignore \"src/**/*.+(ts|js|tsx)\"",
"format": "prettier --ignore-path .gitignore \"src/**/*.+(ts|js|tsx)\" --write"
},
"dependencies": {
"@web3-onboard/injected-wallets": "2.0.16",
"@web3-onboard/react": "2.2.6",
"axios": "0.27.2",
"chart.js": "3.9.1",
"ethers": "5.6.9",
"mongodb": "4.8.1",
"next": "12.2.4",
"react": "18.2.0",
"react-chartjs-2": "4.3.1",
"react-dom": "18.2.0",
"yarn": "1.22.19"
},
"devDependencies": {
"@commitlint/cli": "17.0.3",
"@commitlint/config-conventional": "17.0.3",
"@types/node": "16.11.47",
"@types/react": "18.0.15",
"@types/react-dom": "18.0.6",
"@typescript-eslint/eslint-plugin": "5.32.0",
"@typescript-eslint/parser": "5.32.0",
"autoprefixer": "10.4.8",
"eslint": "8.21.0",
"eslint-config-next": "12.2.3",
"eslint-config-prettier": "8.5.0",
"eslint-import-resolver-typescript": "3.4.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-prettier": "4.2.1",
"husky": "8.0.1",
"lint-staged": "13.0.3",
"postcss": "8.4.16",
"prettier": "2.7.1",
"tailwindcss": "3.1.8",
"typescript": "4.7.4"
}
}