-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.99 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.99 KB
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
{
"name": "ids-drr",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "npm run generate & next dev",
"build": "graphql-codegen --require dotenv/config --config ./config/codegen.ts & next build",
"postbuild": "next-sitemap --config ./next-sitemap.config.js",
"start": "next start",
"lint": "next lint",
"build:tokens": "node ./config/tokens/generate.mjs",
"postbuild:tokens": "node ./config/tokens/copy.js",
"generate": "graphql-codegen --require dotenv/config --config ./config/codegen.ts --watch",
"clean": "rm -rf node_modules package-lock.json",
"test": "jest",
"test:watch": "jest - watch",
"test:coverage": "jest - coverage"
},
"dependencies": {
"@graphql-typed-document-node/core": "^3.2.0",
"@sentry/nextjs": "^8.32.0",
"@tabler/icons-react": "^3.35.0",
"@tanstack/react-query": "^5.89.0",
"@types/node": "^20.1.3",
"@types/react": "19.1.12",
"@types/react-dom": "19.1.9",
"d3-scale": "^4.0.2",
"d3-scale-chromatic": "^3.1.0",
"dom-to-image": "^2.6.0",
"echarts-for-react": "^3.0.2",
"graphql": "^16.6.0",
"graphql-request": "5.1.0",
"graphql-tag": "^2.12.6",
"leaflet": "^1.9.4",
"next": "15.5.9",
"next-intl": "^3.4.0",
"next-sitemap": "^4.2.3",
"next-usequerystate": "^1.20.0",
"nextjs-toploader": "^1.3.2",
"opub-ui": "^0.4.24",
"react": "^19.1.1",
"react-aria": "3.22.0",
"react-dom": "^19.1.1",
"react-error-boundary": "^4.0.11",
"react-select": "^5.8.0",
"sass": "^1.69.5",
"sharp": "^0.33.2",
"tailwindcss-animate": "^1.0.7",
"usehooks-ts": "^3.1.1",
"zustand": "^4.4.1"
},
"devDependencies": {
"@graphql-codegen/cli": "3.3.1",
"@graphql-codegen/client-preset": "3.0.1",
"@graphql-codegen/typescript": "^3.0.4",
"@graphql-codegen/typescript-graphql-request": "^4.5.9",
"@graphql-codegen/typescript-operations": "^3.0.4",
"@ianvs/prettier-plugin-sort-imports": "^4.1.1",
"@jest/globals": "^30.1.1",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.8.0",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/d3-scale": "^4.0.8",
"@types/d3-scale-chromatic": "^3.0.3",
"@types/dom-to-image": "^2.6.5",
"@types/jest": "^30.0.0",
"@types/leaflet": "^1.9.8",
"@types/nprogress": "^0.2.3",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"autoprefixer": "^10.4.14",
"color2k": "^2.0.2",
"dotenv": "^16.4.5",
"encoding": "^0.1.13",
"eslint": "^8.57.0",
"eslint-config-next": "15.5.2",
"jest": "^30.1.1",
"jest-environment-jsdom": "^30.1.1",
"postcss": "^8.4.23",
"prettier": "^3.2.4",
"prettier-plugin-tailwindcss": "^0.5.11",
"style-dictionary": "^3.8.0",
"tailwind-merge": "^1.12.0",
"tailwindcss": "^3.3.2",
"ts-jest": "^29.4.1",
"ts-node": "^10.9.2",
"typescript": "^5.0.4"
},
"overrides": {
"@types/react": "19.1.12",
"@types/react-dom": "19.1.9"
}
}