-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
72 lines (72 loc) · 1.97 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
{
"name": "l2-fees",
"author": "@dmihal",
"license": "MIT",
"version": "1.0.0",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"type-check": "tsc --pretty --noEmit",
"format": "prettier --write **/*.{js,ts,tsx}",
"lint": "eslint . --ext ts --ext tsx --ext js",
"test": "jest",
"test-all": "yarn lint && yarn type-check && yarn test"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "yarn run type-check"
}
},
"lint-staged": {
"*.@(ts|tsx)": [
"yarn lint",
"yarn format"
]
},
"dependencies": {
"@cryptostats/header.header": "^0.0.18",
"@cryptostats/header.sponsor_cta": "^0.0.20",
"@cryptostats/sdk": "^0.2.19",
"@popperjs/core": "^2.9.2",
"@types/react-transition-group": "^4.4.0",
"@web3-react/core": "^6.1.9",
"@web3-react/injected-connector": "^6.0.7",
"ethers": "^5.7.0",
"gray-matter": "^4.0.3",
"lucide-react": "^0.68.0",
"next": "^12.2.5",
"next-mdx-remote": "^3.0.8",
"next-plausible": "2.1.2-beta.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-ga4": "^1.0.6",
"react-popper": "^2.2.5",
"react-select": "^4.3.0",
"react-transition-group": "^4.4.1",
"react-twitter-embed": "^4.0.4",
"recharts": "^2.1.9",
"remark-frontmatter": "^4.0.1",
"sharp": "^0.28.1"
},
"devDependencies": {
"@testing-library/react": "^10.0.1",
"@types/jest": "^25.1.4",
"@types/node": "^13.9.5",
"@types/react": "^18.0.17",
"@types/testing-library__react": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^4.30.0",
"@typescript-eslint/parser": "^4.30.0",
"babel-jest": "^25.2.3",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-react": "^7.19.0",
"husky": "^4.2.3",
"jest": "^25.2.3",
"jest-watch-typeahead": "^0.5.0",
"lint-staged": "^10.0.10",
"prettier": "^2.0.2",
"typescript": "^4.7.4"
}
}