-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
77 lines (77 loc) · 2.8 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
{
"name": "mapswipe-website",
"version": "0.0.1",
"private": true,
"scripts": {
"predev": "mkdir -p cache",
"prebuild": "mkdir -p cache",
"prestart": "mkdir -p cache",
"dev": "next dev -p 3020",
"build": "next build && next-export-optimize-images && next-sitemap && cp redirects/* out/en/ -r",
"start": "next start",
"generate:i18n": "i18next 'src/**/*.{jsx,tsx}' -o 'public/locales/$LOCALE/$NAMESPACE.json'",
"lint": "next lint",
"fetch-data": "env-cmd -f .env.local ./scripts/download-data.sh",
"css-lint": "stylelint 'src/**/*.css'",
"typecheck": "tsc",
"check-unused": "unimported"
},
"dependencies": {
"@togglecorp/fujs": "^2.0.0",
"graphql": "^16.6.0",
"graphql-request": "^5.1.0",
"gray-matter": "^4.0.3",
"i18next": "^22.5.1",
"leaflet": "^1.9.4",
"leaflet-gesture-handling": "^1.2.2",
"next": "^13.4.7-canary.0",
"next-i18next": "^13.3.0",
"next-language-detector": "^1.0.2",
"papaparse": "^5.4.1",
"posthog-js": "^1.68.4",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-i18next": "^12.3.1",
"react-icons": "^4.9.0",
"react-leaflet": "^4.2.1",
"remark": "^14.0.3",
"remark-gfm": "^3.0.1",
"remark-html": "^15.0.2",
"resize-observer-polyfill": "^1.5.1"
},
"devDependencies": {
"@graphql-codegen/cli": "^2.16.4",
"@graphql-codegen/introspection": "^2.2.3",
"@graphql-codegen/typescript-operations": "^2.5.12",
"@types/leaflet": "^1.9.3",
"next-sitemap": "^4.1.8",
"@types/node": "^18.11.9",
"@types/papaparse": "^5.3.7",
"@types/react": "^18.0.25",
"@types/react-dom": "^18.2.6",
"@typescript-eslint/eslint-plugin": "^5.48.0",
"@typescript-eslint/parser": "^5.48.0",
"env-cmd": "^10.1.0",
"eslint": "^8.31.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-next": "^13.1.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-postcss-modules": "^2.0.0",
"eslint-plugin-react": "^7.31.11",
"eslint-plugin-react-hooks": "^4.6.0",
"i18next-parser": "^8.0.0",
"next-export-optimize-images": "^2.1.0",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-nested": "^6.0.0",
"postcss-normalize": "^10.0.1",
"postcss-preset-env": "^7.8.3",
"stylelint": "^14.16.1",
"stylelint-config-concentric": "^2.0.2",
"stylelint-config-recommended": "^9.0.0",
"ts-node": "^10.9.1",
"typescript": "^5.1.3",
"unimported": "^1.29.1"
}
}