-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
103 lines (103 loc) · 2.98 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
101
102
103
{
"name": "coh3-stats",
"version": "0.1.0",
"private": true,
"license": "GNU LGPLv3",
"repository": {
"url": "https://github.com/cohstats/coh3-stats"
},
"engines": {
"node": ">=20",
"npm": "please-use-yarn"
},
"scripts": {
"start": "next dev",
"dev": "next dev",
"build": "next build",
"next:dev": "next dev",
"next:build": "next build",
"build:analyze": "ANALYZE=true yarn build",
"test": "TZ=UTC yarn jest",
"lint": "next lint",
"lint:eslint": "eslint **/*.{ts,tsx,js}",
"lint:prettier": "prettier --check .",
"fix": "prettier --loglevel warn --write .",
"fix:prettier": "prettier --log-level warn --write .",
"clean": "rm -fr .next && rm -fr node_modules",
"prepare": "husky",
"sitemap": "npx --yes ts-node --compiler-options \"{\\\"module\\\":\\\"commonjs\\\"}\" scripts/unit-paths.ts > unit-paths.txt && next-sitemap --config next-sitemap.config.js"
},
"lint-staged": {
"*.{js,ts,jsx,tsx,yml}": [
"prettier --log-level warn --write",
"eslint --config .eslintrc.js"
],
"*.{md,css}": [
"prettier --loglevel warn --write"
]
},
"dependencies": {
"@bbob/preset-react": "4.1.1",
"@bbob/react": "4.1.1",
"@mantine/carousel": "7.14.1",
"@mantine/core": "7.14.1",
"@mantine/dates": "7.14.1",
"@mantine/hooks": "7.14.1",
"@mantine/notifications": "7.14.1",
"@mantine/spotlight": "7.14.1",
"@mantine/utils": "6.0.22",
"@nivo/bar": "0.88.0",
"@nivo/calendar": "0.88.0",
"@nivo/core": "0.88.0",
"@nivo/geo": "0.88.0",
"@nivo/heatmap": "0.88.0",
"@nivo/line": "0.88.0",
"@nivo/pie": "0.88.0",
"@nivo/radar": "0.88.0",
"@nivo/sunburst": "0.88.0",
"@sentry/nextjs": "8.38.0",
"@tabler/icons-react": "3.22.0",
"chart.js": "4.4.6",
"clsx": "2.1.1",
"dayjs": "1.11.13",
"embla-carousel-autoplay": "8.3.1",
"embla-carousel-react": "8.3.1",
"firebase": "11.0.1",
"is-glob": "4.0.3",
"jsesc": "3.0.2",
"json-2-csv": "5.5.6",
"lodash": "4.17.21",
"mantine-datatable": "7.12.4",
"next": "14.2.18",
"nprogress": "0.2.0",
"octokit": "4.0.2",
"react": "18.3.1",
"react-chartjs-2": "5.2.0",
"react-dom": "18.3.1",
"timeago.js": "4.0.2"
},
"devDependencies": {
"@next/bundle-analyzer": "14.2.18",
"@testing-library/jest-dom": "6.6.2",
"@testing-library/react": "16.0.1",
"@types/jest": "29.5.14",
"@types/lodash": "4.17.13",
"@types/node": "20.17.6",
"@types/nprogress": "0.2.3",
"@types/react": "18.3.12",
"@types/react-dom": "18.3.1",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"eslint": "8.57.1",
"eslint-config-next": "14.2.18",
"husky": "9.1.6",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"lint-staged": "15.2.10",
"next-sitemap": "4.2.3",
"postcss-preset-mantine": "1.17.0",
"prettier": "3.3.3",
"typescript": "5.6.3",
"vercel": "39.1.0"
}
}