-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.64 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 2.64 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
94
95
96
{
"name": "otb",
"version": "2.1.0",
"private": true,
"packageManager": "npm@11.6.1",
"engines": {
"node": ">=24"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^7.2.0",
"@fortawesome/free-solid-svg-icons": "^7.2.0",
"@fortawesome/react-fontawesome": "^3.2.0",
"@loadable/component": "^5.16.7",
"@reduxjs/toolkit": "^2.11.2",
"axios": "^1.13.5",
"bayes": "^1.0.0",
"d3-array": "^3.2.4",
"d3-collection": "^1.0.7",
"d3-scale-chromatic": "^3.1.0",
"downloadjs": "^1.4.7",
"framer-motion": "^12.34.0",
"http-proxy-middleware": "^3.0.5",
"immutability-helper": "^3.1.1",
"jschardet": "^3.1.4",
"lodash": "^4.17.23",
"loglevel": "^1.9.2",
"lru-cache": "^11.2.6",
"moment": "^2.30.1",
"next": "^16.1.6",
"papaparse": "^5.5.3",
"react": "^19.2.4",
"react-dates": "^21.8.0",
"react-dom": "^19.2.4",
"react-redux": "^9.2.0",
"react-select": "^5.10.2",
"react-tooltip": "^5.30.0",
"recharts": "^3.7.0",
"redux": "^5.0.1",
"redux-logger": "^3.0.6",
"redux-persist": "^6.0.0",
"redux-search": "^2.5.0",
"redux-thunk": "^3.1.0",
"reselect": "^5.1.1",
"uuid": "^13.0.0",
"xlsx": "^0.18.5",
"yauzl": "^3.2.1"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint",
"test": "jest",
"analyze": "npm run build && npx @next/bundle-analyzer build"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.1.18",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/d3-array": "^3.2.2",
"@types/d3-collection": "^1.0.13",
"@types/d3-scale-chromatic": "^3.1.0",
"@types/downloadjs": "^1.4.6",
"@types/jest": "^30.0.0",
"@types/lodash": "^4.17.23",
"@types/node": "^25.2.3",
"@types/papaparse": "^5.5.2",
"@types/react": "^19.2.14",
"@types/react-dates": "^21.8.8",
"@types/react-dom": "^19.2.3",
"@types/redux-logger": "^3.0.13",
"@types/yauzl": "^2.10.3",
"axios-mock-adapter": "^2.1.0",
"eslint": "^9",
"eslint-config-next": "^16.1.6",
"identity-obj-proxy": "^3.0.0",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"jest-fetch-mock": "^3.0.3",
"pnp-webpack-plugin": "^1.7.0",
"postcss": "^8.5.6",
"redux-mock-store": "^1.5.5",
"tailwindcss": "^4.1.18",
"ts-jest": "^29.4.6",
"ts-node": "^10.9.2",
"typescript": "^5.9.3",
"webpack-bundle-analyzer": "^5.2.0"
},
"overrides": {
"react-dates": {
"react": "$react",
"react-dom": "$react-dom"
}
}
}