-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
59 lines (59 loc) · 1.78 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
{
"name": "time-switch",
"version": "0.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"analyze": "ANALYZE=true next build",
"start": "next start",
"typecheck": "tsc --noEmit",
"export": "next build && next export",
"lint": "next lint",
"prettier:check": "prettier --check \"**/*.{ts,tsx}\"",
"prettier:write": "prettier --write \"**/*.{ts,tsx}\""
},
"dependencies": {
"@fontsource/pacifico": "^4.5.7",
"@mantine/core": "4.2.2",
"@mantine/dates": "4.2.2",
"@mantine/form": "^4.2.10",
"@mantine/hooks": "4.2.2",
"@mantine/next": "4.2.2",
"@mantine/notifications": "4.2.2",
"@next/bundle-analyzer": "^12.1.4",
"calendar-link": "^2.2.0",
"chrome-aws-lambda": "6.0.0",
"cookies-next": "^2.0.4",
"countries-and-timezones": "^3.3.0",
"dayjs": "^1.11.3",
"js-base64": "^3.7.2",
"next": "12.1.4",
"next-api-og-image": "^4.0.1",
"next-seo": "^5.4.0",
"next-share": "^0.14.0",
"react": "18.1.0",
"react-canvas-confetti": "^1.3.0",
"react-country-flag": "^3.0.2",
"react-dom": "18.1.0",
"react-icons": "^4.4.0",
"react-tiny-linkify": "^1.1.1"
},
"devDependencies": {
"@next/eslint-plugin-next": "^12.1.4",
"@types/react": "17.0.43",
"@typescript-eslint/eslint-plugin": "^5.16.0",
"@typescript-eslint/parser": "^5.16.0",
"eslint": "^8.18.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-typescript": "^16.1.4",
"eslint-config-mantine": "1.1.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-testing-library": "^5.2.0",
"prettier": "^2.6.2",
"typescript": "4.6.3"
}
}