forked from cohstats/coh3-stats
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 2.65 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
{
"name": "coh3-stats",
"version": "0.1.0",
"private": true,
"license": "GNU LGPLv3",
"repository": {
"url": "https://github.com/cohstats/coh3-stats"
},
"engines": {
"node": ">=16",
"npm": "please-use-yarn"
},
"scripts": {
"start": "edgio dev",
"dev": "edgio dev",
"build": "edgio build",
"next:dev": "next dev",
"next:build": "next build",
"test": "jest",
"lint": "next lint",
"lint:eslint": "eslint **/*.{ts,tsx,js}",
"lint:prettier": "prettier --check .",
"fix": "prettier --loglevel warn --write .",
"fix:prettier": "prettier --loglevel warn --write .",
"clean": "rm -fr .next && rm -fr node_modules",
"prepare": "husky install",
"sitemap": "next-sitemap --config next-sitemap.config.js"
},
"lint-staged": {
"*.{js,ts,jsx,tsx,yml}": [
"prettier --loglevel warn --write",
"eslint --config .eslintrc.js"
],
"*.md": [
"prettier --loglevel warn --write"
]
},
"dependencies": {
"@emotion/react": "^11.10.6",
"@emotion/server": "^11.10.0",
"@mantine/core": "^6.0.19",
"@mantine/dates": "^6.0.19",
"@mantine/hooks": "^6.0.19",
"@mantine/next": "^6.0.19",
"@mantine/notifications": "^6.0.19",
"@mantine/spotlight": "^6.0.19",
"@nivo/bar": "^0.83.0",
"@nivo/core": "^0.83.0",
"@nivo/geo": "^0.83.0",
"@nivo/heatmap": "^0.83.0",
"@nivo/line": "^0.83.0",
"@nivo/pie": "^0.83.0",
"@sentry/nextjs": "^7.64.0",
"@tabler/icons-react": "^2.31.0",
"chart.js": "^4.2.1",
"dayjs": "^1.11.9",
"firebase": "^10.2.0",
"is-glob": "^4.0.3",
"jsesc": "^3.0.2",
"json-2-csv": "^3.19.0",
"lodash": "^4.17.21",
"mantine-datatable": "^1.8.6",
"next": "^13.1.6",
"nprogress": "^0.2.0",
"octokit": "^2.0.14",
"react": "^18.2.0",
"react-chartjs-2": "^5.2.0",
"react-dom": "^18.2.0",
"timeago.js": "^4.0.2"
},
"devDependencies": {
"@edgio/cli": "^6.1.8",
"@edgio/core": "^6.1.8",
"@edgio/devtools": "^6.1.8",
"@edgio/next": "^6.1.8",
"@edgio/prefetch": "^6.1.8",
"@edgio/react": "^6.1.8",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@types/node": "16.11.7",
"@types/nprogress": "^0.2.0",
"@types/react": "18.0.27",
"@types/react-dom": "18.0.10",
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@typescript-eslint/parser": "^5.51.0",
"eslint": "8.33.0",
"eslint-config-next": "^13.1.6",
"husky": "^8.0.3",
"jest": "^29.4.3",
"jest-environment-jsdom": "^29.4.3",
"lint-staged": "^13.1.1",
"next-sitemap": "^4.0.6",
"prettier": "^2.8.4",
"typescript": "4.8.4"
}
}