This repository was archived by the owner on Mar 26, 2026. It is now read-only.
forked from opendatadiscovery/odd-platform
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
126 lines (126 loc) · 3.86 KB
/
package.json
File metadata and controls
126 lines (126 loc) · 3.86 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "odd-platform-ui",
"version": "0.1.0",
"private": true,
"scripts": {
"start": "vite",
"build-only": "vite build",
"clean": "rm -rf ./src/generated-sources",
"build": "npm run generate && tsc --noEmit && vite build",
"test": "jest",
"test:CI": "CI=true npm test -- --coverage --ci --testResultsProcessor=\"jest-sonar-reporter\" --watchAll=false",
"tsc": "tsc",
"generate": "docker run -v `pwd`/..:/mnt -w /mnt --rm openapitools/openapi-generator-cli:v5.1.1 generate -c odd-platform-ui/openapi-config.yaml",
"lint": "eslint --ext .tsx,.ts src/",
"lint:fix": "eslint --ext .tsx,.ts src/ --fix",
"prepare": "chmod u+x .husky/prepare.sh && .husky/prepare.sh",
"pre-commit": "npm run tsc --noEmit && lint-staged",
"preinstall": "npm install husky"
},
"lint-staged": {
"*.{js,ts,jsx,tsx}": [
"eslint -c .eslintrc.json --fix",
"git add"
]
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"@mui/lab": "^5.0.0-alpha.101",
"@mui/material": "^5.8.5",
"@mui/system": "^5.8.5",
"@mui/x-date-pickers": "^5.0.10",
"@reduxjs/toolkit": "^1.8.5",
"@uiw/react-md-editor": "^3.19.0",
"@visx/curve": "^2.1.0",
"@visx/event": "^2.6.0",
"@visx/group": "^2.10.0",
"@visx/marker": "^2.12.2",
"@visx/shape": "^2.12.2",
"@visx/text": "^2.12.2",
"@visx/zoom": "^2.10.0",
"ajv": "^8.11.0",
"d3-hierarchy": "^3.1.1",
"d3-shape": "^3.1.0",
"date-fns": "^2.28.0",
"date-fns-tz": "^1.3.7",
"github-markdown-css": "^5.1.0",
"html-react-parser": "^3.0.8",
"lodash": "^4.17.21",
"query-string": "^7.1.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-hook-form": "^7.52.1",
"react-hot-toast": "^2.4.0",
"react-infinite-scroll-component": "^6.1.0",
"react-json-tree": "^0.16.2",
"react-multi-date-picker": "^3.3.4",
"react-redux": "^8.0.1",
"react-router-dom": "^5.2.0",
"react-truncate-markup": "^5.1.2",
"react-virtualized": "^9.22.3",
"styled-components": "^5.3.5",
"typesafe-actions": "^5.1.0",
"use-debounce": "^8.0.1",
"uuid": "^9.0.0",
"vanilla-jsoneditor": "^0.7.11"
},
"devDependencies": {
"@babel/preset-env": "^7.18.10",
"@emotion/react": "^11.10.4",
"@emotion/styled": "^11.8.1",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^12.1.4",
"@testing-library/user-event": "^14.4.3",
"@types/d3": "^7.1.0",
"@types/jest": "^27.4.1",
"@types/lodash": "^4.14.191",
"@types/node": "^18.11.13",
"@types/react": "^17.0.39",
"@types/react-dom": "^17.0.14",
"@types/react-redux": "^7.1.11",
"@types/react-router-dom": "^5.3.3",
"@types/react-virtualized": "^9.21.21",
"@types/styled-components": "^5.1.26",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.47.1",
"@typescript-eslint/parser": "^5.47.1",
"@vitejs/plugin-react": "^3.0.0",
"babel-jest": "^29.3.1",
"eslint": "8.22.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-lodash": "^7.4.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.31.10",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.3",
"jest": "^27.5.1",
"lint-staged": "^13.0.3",
"prettier": "^2.6.2",
"ts-jest": "^27.1.4",
"typescript": "^4.8.2",
"vite": "^4.0.0",
"vite-plugin-checker": "^0.5.2",
"vite-tsconfig-paths": "^4.0.2"
},
"resolutions": {
"minimist": "1.2.6"
}
}