-
Notifications
You must be signed in to change notification settings - Fork 48
/
package.json
85 lines (85 loc) · 2.45 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
{
"name": "klimatkollen",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "vitest",
"analyze": "cross-env ANALYZE=true next build"
},
"dependencies": {
"@danmarshall/deckgl-typings": "^4.9.13",
"@emotion/is-prop-valid": "^1.2.2",
"@fontsource-variable/dm-sans": "^5.0.6",
"@tanstack/react-table": "^8.11.8",
"@types/wikidata-sdk": "^6.1.0",
"@vitejs/plugin-react": "4.2.1",
"axios": "^1.6.7",
"babel-plugin-styled-components": "^2.1.4",
"chart.js": "^4.4.1",
"deck.gl": "^9.0.6",
"i18next": "^23.10.1",
"i18next-fs-backend": "^2.3.1",
"jsdom": "^24.0.0",
"md5": "^2.3.0",
"next": "14.2.3",
"next-i18next": "^15.2.0",
"nextjs-progressbar": "^0.0.16",
"react": "^18.3.1",
"react-chartjs-2": "^5.2.0",
"react-cookie-consent": "^9.0.0",
"react-i18next": "^14.1.0",
"react-mailchimp-subscribe": "^2.1.3",
"react-markdown": "^9.0.1",
"rehype-external-links": "^3.0.0",
"slugify": "^1.6.6",
"styled-components": "^6.1.8",
"vite": "^5.2.11"
},
"eslintConfig": {
"extends": [
"airbnb",
"airbnb/hooks",
"plugin:@typescript-eslint/recommended",
"plugin:jsx-a11y/recommended"
]
},
"devDependencies": {
"@babel/eslint-parser": "^7.23.10",
"@babel/plugin-syntax-jsx": "^7.23.3",
"@babel/preset-react": "^7.23.3",
"@next/bundle-analyzer": "^14.1.0",
"@next/eslint-plugin-next": "^14.2.4",
"@svgr/webpack": "^8.1.0",
"@testing-library/jest-dom": "^6.4.5",
"@testing-library/react": "15.0.7",
"@testing-library/user-event": "14.5.2",
"@types/md5": "^2.3.5",
"@types/node": "20.12.11",
"@types/react": "18.3.1",
"@types/react-mailchimp-subscribe": "^2.1.4",
"@typescript-eslint/eslint-plugin": "^6.20.0",
"@typescript-eslint/parser": "^6.20.0",
"cross-env": "^7.0.3",
"dotenv": "^16.4.5",
"eslint": "^8.56.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-testing-library": "^6.2.2",
"prettier": "^3.2.5",
"typescript": "^5.3.3",
"vitest": "^1.6.0",
"webpack-bundle-analyzer": "^4.10.1"
},
"overrides": {
"jsdom": {
"tough-cookie": "5.0.0-rc.2"
}
}
}