-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
120 lines (120 loc) · 3.69 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "jsconf_cl",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "NODE_ENV=development next build",
"postbuild": "next-sitemap",
"start": "next start",
"typecheck": "node ./node_modules/.bin/tsc",
"lint": "next lint",
"prettier": "prettier",
"lint-staged": "lint-staged",
"generate": "graphql-codegen --config codegen.yml -r dotenv/config",
"prepare": "husky install"
},
"lint-staged": {
"**/*.{ts,tsx}": "eslint --fix",
"**/*": "prettier --write --ignore-unknown"
},
"dependencies": {
"@contentful/rich-text-react-renderer": "^15.12.1",
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@next/bundle-analyzer": "^12.3.4",
"@next/eslint-plugin-next": "^12.1.6",
"@popperjs/core": "^2.11.6",
"@tanstack/query-core": "^4.10.3",
"@tanstack/react-query": "^4.10.3",
"@tanstack/react-query-devtools": "^4.11.0",
"@types/canvas-confetti": "^1.6.0",
"add-to-calendar-button": "^1.18.8",
"atropos": "^1.0.2",
"canvas-confetti": "^1.6.0",
"csstype": "^3.0.11",
"date-fns": "^2.29.3",
"date-fns-tz": "^1.3.7",
"feather-icons": "^4.29.0",
"framer-motion": "^7.6.4",
"google-map-react": "^2.2.0",
"graphql": "^16.3.0",
"i18n-iso-countries": "^7.5.0",
"jotai": "^1.8.5",
"jwt-decode": "^3.1.2",
"micromatch": "^4.0.5",
"nanoid": "^4.0.0",
"next": "^12.3.1",
"next-sitemap": "^3.1.6",
"polished": "^4.2.2",
"react": "^18.2.0",
"react-card-flip": "^1.2.0",
"react-countdown": "^2.3.5",
"react-country-flag": "^3.0.2",
"react-div-100vh": "^0.7.0",
"react-dom": "^18.2.0",
"react-feather": "^2.0.10",
"react-hook-form": "^7.32.0",
"react-hot-toast": "^2.4.0",
"react-markdown": "^8.0.3",
"react-popper": "^2.3.0",
"react-portal": "^4.2.2",
"react-qr-code": "^2.0.8",
"react-qrcode-logo": "^2.8.0",
"react-select": "^5.6.0",
"react-social-login-buttons": "^3.6.1",
"react-spinners": "^0.13.4",
"react-tsparticles": "^2.1.3",
"react-use": "^17.4.0",
"react-zxing": "^1.1.0",
"remark-gfm": "^3.0.1",
"ts-essentials": "^9.3.0",
"tsparticles": "^2.1.3",
"tsparticles-engine": "^2.1.3",
"urql": "^2.2.0",
"usehooks-ts": "^2.9.1"
},
"devDependencies": {
"@graphql-codegen/cli": "^2.13.7",
"@graphql-codegen/introspection": "2.1.1",
"@graphql-codegen/near-operation-file-preset": "^2.2.9",
"@graphql-codegen/typed-document-node": "^2.2.8",
"@graphql-codegen/typescript": "^2.5.1",
"@graphql-codegen/typescript-operations": "^2.4.2",
"@graphql-codegen/typescript-urql": "^3.5.7",
"@svgr/webpack": "^6.2.1",
"@types/google-map-react": "^2.1.7",
"@types/micromatch": "^4.0.2",
"@types/node": "^18.0.0",
"@types/react": "^18.0.14",
"@types/react-dom": "^18.0.5",
"@types/react-portal": "^4.0.4",
"@typescript-eslint/eslint-plugin": "^5.49.0",
"@typescript-eslint/parser": "^5.49.0",
"@zeit/next-css": "^1.0.1",
"dotenv": "^16.0.0",
"eslint": "^8.27.0",
"eslint-config-next": "^12.1.6",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard-with-typescript": "^23.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.5.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.31.10",
"husky": "^8.0.1",
"lint-staged": "^13.0.2",
"next-purgecss": "^3.1.2",
"prettier": "2.7.1",
"ts-essentials": "^9.3.0",
"type-fest": "^2.13.0",
"typescript": "^4.9.4",
"vercel": "^28.10.0"
},
"overrides": {
"react-qr-reader": {
"react": "$react",
"react-dom": "$react-dom"
}
},
"license": "MIT"
}