-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
100 lines (100 loc) · 3.23 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "reports",
"version": "0.2.8",
"license": "MIT",
"engines": {
"node": ">=18.13.0",
"yarn": ">=1.22.19"
},
"scripts": {
"dev": "./node_modules/.bin/next dev -p 3000",
"build": "./node_modules/.bin/next build",
"start": "./node_modules/.bin/next start",
"lint:staged": "./node_modules/.bin/lint-staged",
"format": "./node_modules/.bin/prettier --write 'src/**/*.{js,jsx,ts,tsx,json,css,scss,md}'",
"lint": "yarn lint:eslint && yarn lint:tsc",
"lint:eslint": "./node_modules/.bin/eslint 'src/**/*.{ts,tsx}'",
"lint:eslint:fix": "./node_modules/.bin/eslint --fix 'src/**/*.{ts,tsx}'",
"lint:tsc": "./node_modules/.bin/tsc -p tsconfig.json",
"cache:dashboard": "./node_modules/.bin/ts-node --project ./tsconfig.json ./src/scripts/generateDashboard.ts",
"cache:reports": "./node_modules/.bin/ts-node --project ./tsconfig.json ./src/scripts/generateReports.ts",
"generate:cache": "yarn cache:dashboard && yarn cache:reports",
"prepare": "husky install",
"commit": "git-cz"
},
"dependencies": {
"@emotion/cache": "^11.11.0",
"@emotion/react": "^11.11.3",
"@emotion/server": "^11.11.0",
"@emotion/styled": "^11.11.0",
"@ethersproject/address": "^5.7.0",
"@google-cloud/bigquery": "^7.8.0",
"@mui/icons-material": "5.14.8",
"@mui/material": "5.14.8",
"commander": "^12.1.0",
"cookie": "^0.6.0",
"date-fns": "^3.3.1",
"dayjs": "^1.11.10",
"dotenv": "^16.4.5",
"framer-motion": "^11.2.12",
"highcharts": "^11.4.3",
"highcharts-react-official": "^3.2.1",
"lodash": "^4.17.21",
"lottie-react": "^2.4.0",
"luxon": "^3.4.4",
"moment": "^2.30.1",
"next": "13.5.1",
"numbro": "^2.4.0",
"puppeteer": "^22.12.1",
"react": "^18.2.0",
"react-copy-to-clipboard": "^5.1.0",
"react-dom": "18.3.1",
"react-error-boundary": "^4.0.13",
"react-hook-form": "^7.52.0",
"react-intersection-observer": "^9.10.3",
"react-material-ui-carousel": "^3.4.2",
"react-slick": "^0.30.2",
"recharts": "^2.12.7",
"slick-carousel": "^1.8.1",
"ts-node": "^10.9.2",
"yup": "^1.3.3"
},
"devDependencies": {
"@commitlint/cli": "19.3.0",
"@commitlint/config-conventional": "19.2.2",
"@types/cookie": "^0.6.0",
"@types/lodash": "^4.17.6",
"@types/luxon": "^3.4.2",
"@types/node": "20.14.9",
"@types/react": "18.3.3",
"@types/react-copy-to-clipboard": "^5.0.7",
"@types/react-dom": "18.3.0",
"@types/react-slick": "^0.23.13",
"@typescript-eslint/eslint-plugin": "^7.14.1",
"@typescript-eslint/parser": "^7.14.1",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
"eslint": "8.57.0",
"eslint-config-next": "14.2.4",
"eslint-config-prettier": "^9.1.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.7",
"prettier": "^3.3.2",
"tsc-files": "^1.1.4",
"typescript": "5.5.2"
},
"lint-staged": {
"src/**/*.+(js,ts,tsx)": [
"eslint -c ./.eslintrc.json -cache --fix",
"tsc-files --noEmit"
],
"src/**/*.{js,ts,tsx,css,md,json}": [
"prettier --config ./.prettierrc --ignore-path ./.prettierignore --write"
]
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}