-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.21 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.21 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
{
"name": "cryptobridges",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@cryptostats/sdk": "^0.2.17",
"@emotion/react": "^11.10.4",
"@emotion/styled": "^11.10.4",
"@mui/material": "^5.10.6",
"airtable": "^0.11.5",
"d3": "^7.6.1",
"d3-sankey": "^0.12.3",
"dat.gui": "^0.7.9",
"lucide-react": "^0.98.0",
"next": "12.2.4",
"next-plausible": "^3.6.4",
"nextjs-progressbar": "^0.0.14",
"react": "18.2.0",
"react-dom": "18.2.0",
"simplebar-react": "^2.4.1",
"sitemap": "^7.1.1",
"swr": "^1.3.0",
"zustand": "^4.1.1"
},
"devDependencies": {
"@types/d3": "^7.4.0",
"@types/d3-sankey": "^0.11.2",
"@types/dat.gui": "^0.7.7",
"@types/node": "18.6.4",
"@types/react": "18.0.16",
"@types/react-dom": "18.0.6",
"@typescript-eslint/eslint-plugin": "^5.33.0",
"eslint": "^8.21.0",
"eslint-config-next": "12.2.4",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.7.1",
"typescript": "4.7.4"
},
"eslintConfig": {
"root": true,
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint",
"prettier"
],
"rules": {
"no-console": 1,
"prettier/prettier": 0,
"react/jsx-no-target-blank": 0,
"@next/next/no-img-element": 0,
"@typescript-eslint/no-floating-promises": 0,
"@typescript-eslint/no-misused-promises": 0,
"@typescript-eslint/no-unsafe-assignment": 0,
"@typescript-eslint/no-unsafe-call": 0,
"@typescript-eslint/no-unsafe-member-access": 0
},
"ignorePatterns": [],
"extends": [
"next",
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"plugin:@typescript-eslint/recommended-requiring-type-checking",
"prettier",
"next/core-web-vitals"
],
"parserOptions": {
"project": [
"./tsconfig.json"
]
},
"env": {
"browser": true,
"node": true
}
},
"prettier": {
"semi": true,
"trailingComma": "all",
"singleQuote": true,
"printWidth": 80
}
}