-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
103 lines (103 loc) · 3.18 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": "knight-mare",
"version": "2.0.0",
"private": true,
"description": "Frontend project for the Club Scacchi Cantù public website.",
"author": "Gianmarco Bado <[email protected]>",
"repository": "giammyisjammy/knight-mare",
"license": "MIT",
"engines": {
"node": ">=18"
},
"packageManager": "[email protected]",
"scripts": {
"start": "next start",
"build": "next build",
"dev": "next dev",
"deploy": "vercel deploy",
"deploy:prod": "vercel deploy --prod",
"analyze": "cross-env ANALYZE=true next build",
"analyze:server": "cross-env BUNDLE_ANALYZE=server next build",
"analyze:browser": "cross-env BUNDLE_ANALYZE=browser next build",
"test": "run-p test:*",
"test:lint": "eslint '**/*.{ts,tsx}'",
"test:prettier": "prettier '**/*.{js,jsx,ts,tsx}' --check",
"start:bot": "ts-node --project ./tsconfig.bot.json ./lib/bot.ts",
"dev:bot": "ts-node-dev --project ./tsconfig.bot.json ./lib/bot.ts"
},
"dependencies": {
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@fisch0920/use-dark-mode": "^2.4.0",
"@fontsource/roboto": "^5.0.8",
"@hookform/error-message": "^2.0.1",
"@keyvhq/core": "^2.0.0",
"@keyvhq/redis": "^2.0.0",
"@mui/icons-material": "^5.14.6",
"@mui/material": "^5.14.6",
"@mui/x-date-pickers": "^6.12.0",
"@notionhq/client": "^2.2.7",
"@react-icons/all-files": "^4.1.0",
"@vercel/og": "^0.5.11",
"classnames": "^2.3.1",
"date-fns": "^2.28.0",
"dotenv": "^16.4.1",
"expiry-map": "^2.0.0",
"fathom-client": "^3.4.1",
"got": "^12.0.3",
"grammy": "^1.20.3",
"isomorphic-unfetch": "^3.1.0",
"lottie-react": "^2.4.0",
"lqip-modern": "^2.0.0",
"next": "^12.3.1",
"notion-client": "^6.15.6",
"notion-types": "^6.15.6",
"notion-utils": "^6.15.6",
"p-map": "^6.0.0",
"p-memoize": "^7.1.1",
"posthog-js": "^1.79.0",
"react": "^18.2.0",
"react-body-classname": "^1.3.1",
"react-dom": "^18.2.0",
"react-hook-form": "^7.45.2",
"react-hook-form-mui": "^6.5.1",
"react-imask": "^7.1.3",
"react-notion-x": "^6.15.6",
"react-spring": "^9.7.2",
"react-tweet-embed": "^2.0.0",
"react-use": "^17.3.2",
"rss": "^1.2.2",
"use-sound": "^4.0.1"
},
"devDependencies": {
"@next/bundle-analyzer": "^13.4.19",
"@next/eslint-plugin-next": "^13.4.13",
"@trivago/prettier-plugin-sort-imports": "^4.2.0",
"@types/node": "^20.5.1",
"@types/react": "^18.0.21",
"@types/react-body-classname": "^1.1.7",
"@typescript-eslint/eslint-plugin": "^5.40.0",
"@typescript-eslint/parser": "^5.40.0",
"cross-env": "^7.0.2",
"eslint": "^8.46.0",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-typescript": "^3.6.0",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-react": "^7.33.1",
"eslint-plugin-react-hooks": "^4.6.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.7.1",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"typescript": "^4.8.4"
},
"overrides": {
"cacheable-request": {
"keyv": "npm:@keyvhq/core@~1.6.6"
}
},
"volta": {
"node": "18.17.0",
"pnpm": "8.6.11"
}
}