-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
112 lines (112 loc) · 3.26 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
{
"name": "seebruecke-frontend",
"description": "",
"version": "0.0.0",
"author": {
"name": "Gustav Pursche",
"email": "[email protected]",
"url": "https://gu.stav.dev"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/seebruecke-org/frontend.git"
},
"scripts": {
"build": "next build --no-lint",
"dev": "next",
"start": "next start",
"lint": "next lint",
"format": "prettier --write './**/*.{js,jsx,ts,tsx,css,md,json}' --config ./.prettierrc"
},
"dependencies": {
"@logtail/node": "^0.1.10",
"@logtail/winston": "^0.1.10",
"@mailchimp/mailchimp_marketing": "^3.0.72",
"@next/bundle-analyzer": "^12.0.8",
"@prefresh/webpack": "^3.3.2",
"@reach/dialog": "^0.16.2",
"@svgr/webpack": "^6.2.0",
"@turf/bbox": "^6.5.0",
"@turf/helpers": "^6.5.0",
"@urql/exchange-graphcache": "^4.3.6",
"algoliasearch": "^4.12.0",
"autoprefixer": "^10.4.2",
"body-scroll-lock": "^3.1.5",
"buffer-image-size": "^0.6.4",
"clsx": "^1.1.1",
"date-fns": "^2.28.0",
"date-fns-tz": "^1.2.2",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"graphql": "^16.2.0",
"hirestime": "^6.1.0",
"is-relative-url": "^3.0.0",
"js-cookie": "^3.0.1",
"json-to-graphql-query": "^2.2.0",
"json5": "^2.2.0",
"mapbox-gl": "^2.6.1",
"matomo-tracker": "^2.2.4",
"next": "^12.0.8",
"next-compose-plugins": "^2.2.1",
"next-i18next": "^10.2.0",
"next-plugin-preact": "^3.0.6",
"next-pwa": "^5.4.4",
"next-transpile-modules": "^9.0.0",
"postcss": "^8.4.5",
"postcss-preset-env": "^7.2.2",
"preact": "^10.6.4",
"preact-render-to-string": "^5.1.19",
"puppeteer": "^13.0.1",
"react": "npm:@preact/compat@^17.0.3",
"react-accessible-accordion": "^4.0.0",
"react-children-utilities": "^2.6.3",
"react-dom": "npm:@preact/compat@^17.0.3",
"react-hook-form": "^6.15.8",
"react-hot-toast": "^2.2.0",
"react-intersection-observer": "^8.33.1",
"react-map-gl": "^6.1.18",
"react-markdown": "^5.0.3",
"react-measure": "^2.5.2",
"react-modal": "^3.14.4",
"react-portal": "^4.2.1",
"react-social-media-embed": "^2.3.5",
"react-ssr-prepass": "npm:preact-ssr-prepass@^1.2.0",
"remark": "^14.0.2",
"remark-excerpt": "^1.0.0-beta.1",
"remark-extract-toc": "^1.1.0",
"remark-parse": "^10.0.1",
"sass": "^1.71.1",
"scheduler": "^0.20.2",
"serialize-error": "^9.0.0",
"sharp": "^0.29.3",
"slugify": "^1.6.5",
"strip-js": "^1.2.0",
"swiper": "^6.8.4",
"tailwindcss": "^3.0.13",
"truncate": "^3.0.0",
"unified": "^10.1.1",
"urql": "^2.0.6",
"uuid": "^8.3.2",
"winston": "^3.4.0",
"zustand": "^3.6.9"
},
"devDependencies": {
"@babel/core": "^7.16.7",
"babel-loader": "^8.2.3",
"babel-plugin-inline-react-svg": "^2.0.1",
"babel-preset-react-app": "^10.0.1",
"eslint-config-next": "^12.0.8",
"prettier": "^2.5.1"
},
"prettier": {
"arrowParens": "always",
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "none"
}
}