-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
151 lines (151 loc) · 5.31 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
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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
{
"name": "digma-ui",
"version": "6.12.0",
"description": "Digma UI",
"scripts": {
"lint:eslint": "eslint --cache .",
"lint:stylelint": "stylelint '**/*.ts'",
"lint:knip": "knip --cache",
"lint": "npm run lint:eslint && npm run lint:stylelint",
"fix:prettier": "prettier --write '**/*.{json,md,mjs,ts,tsx}'",
"test": "jest",
"test:coverage": "jest --coverage",
"start": "webpack serve --config webpack.dev.ts --env PLATFORM=Web",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"generate-types": "npx @rtk-query/codegen-openapi openapi-config.ts",
"get-jaeger-ui": "node --experimental-transform-types ./scripts/get-jaeger-ui.mts",
"update-dependencies": "node --experimental-transform-types ./scripts/update-dependencies.mts",
"prebuild": "rimraf dist && npm run get-jaeger-ui",
"build:dev": "npm run prebuild && webpack --progress --config webpack.dev.ts",
"build:dev:jetbrains": "npm run build:dev -- --env PLATFORM=JetBrains",
"build:dev:jetbrains:zip": "npm run build:dev:jetbrains -- --env ZIP=true --env ZIP_FILE_FORMAT=JetBrains",
"build:dev:web": "npm run build:dev -- --env PLATFORM=Web",
"build:dev:web:zip": "npm run build:dev:web -- --env ZIP=true",
"build:prod": "npm run prebuild && webpack --progress --config webpack.prod.ts",
"build:prod:jetbrains": "npm run build:prod -- --env PLATFORM=JetBrains",
"build:prod:jetbrains:zip": "npm run build:prod:jetbrains -- --env ZIP=true --env ZIP_FILE_FORMAT=JetBrains",
"build:prod:web": "npm run build:prod -- --env PLATFORM=Web",
"build:prod:web:zip": "npm run build:prod:web -- --env ZIP=true",
"precommit": "lint-staged",
"prepare": "husky"
},
"lint-staged": {
"*.{mjs,ts,tsx}": [
"eslint --cache"
],
"src/**/*.ts": [
"stylelint"
],
"*.{json,mjs,md,ts,tsx}": [
"prettier --write"
],
"src/**/*.{ts,tsx}": [
"jest --bail --findRelatedTests --passWithNoTests"
]
},
"repository": {
"type": "git"
},
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.23.2",
"@babel/preset-env": "^7.23.2",
"@babel/preset-react": "^7.22.15",
"@babel/preset-typescript": "^7.23.2",
"@eslint/js": "^9.16.0",
"@octokit/rest": "^21.0.2",
"@rtk-query/codegen-openapi": "^2.0.0",
"@storybook/addon-a11y": "^8.4.7",
"@storybook/addon-designs": "^8.0.4",
"@storybook/addon-essentials": "^8.4.7",
"@storybook/addon-interactions": "^8.4.7",
"@storybook/addon-webpack5-compiler-babel": "^3.0.3",
"@storybook/blocks": "^8.4.7",
"@storybook/react": "^8.4.7",
"@storybook/react-webpack5": "^8.4.7",
"@storybook/test": "^8.4.7",
"@testing-library/react": "^16.0.1",
"@types/adm-zip": "^0.5.7",
"@types/eslint-config-prettier": "^6.11.3",
"@types/fs-extra": "^11.0.4",
"@types/jest": "^29.5.14",
"@types/react": "^18.0.27",
"@types/react-dom": "^18.0.10",
"@types/react-helmet": "^6.1.7",
"@types/react-syntax-highlighter": "^15.5.7",
"@types/react-transition-group": "^4.4.5",
"@types/semver": "^7.5.6",
"@types/uuid": "^9.0.8",
"@types/zip-webpack-plugin": "^3.0.6",
"adm-zip": "^0.5.16",
"babel-loader": "^9.1.3",
"babel-plugin-styled-components": "^2.1.4",
"cheerio": "^1.0.0",
"copy-webpack-plugin": "^12.0.2",
"css-loader": "^7.1.2",
"dotenv": "^16.4.7",
"eslint": "^9.16.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-storybook": "^0.11.1",
"fs-extra": "^11.2.0",
"html-webpack-plugin": "^5.6.3",
"husky": "^9.0.10",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"knip": "^5.39.4",
"lint-staged": "^15.2.10",
"postcss-styled-syntax": "^0.7.0",
"prettier": "^2.8.3",
"rimraf": "^6.0.1",
"storybook": "^8.4.7",
"storybook-addon-remix-react-router": "^3.0.2",
"style-loader": "^3.3.1",
"stylelint": "^16.11.0",
"stylelint-config-standard": "^36.0.1",
"ts-jest": "^29.2.5",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.1",
"typescript": "^5.7.2",
"typescript-eslint": "^8.17.0",
"typescript-plugin-styled-components": "^3.0.0",
"webpack": "^5.97.1",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.2.0",
"zip-webpack-plugin": "^4.0.2"
},
"dependencies": {
"@floating-ui/react": "^0.25.1",
"@formkit/auto-animate": "^0.8.2",
"@react-oauth/google": "^0.12.1",
"@reduxjs/toolkit": "^2.5.0",
"@tanstack/react-table": "^8.7.8",
"allotment": "^1.19.0",
"axios": "^1.7.4",
"copy-to-clipboard": "^3.3.3",
"date-fns": "^2.29.3",
"free-email-domains": "^1.2.5",
"posthog-js": "^1.215.1",
"react": "^18.2.0",
"react-cool-dimensions": "^3.0.1",
"react-dom": "^18.2.0",
"react-error-boundary": "^4.0.13",
"react-helmet": "^6.1.0",
"react-hook-form": "^7.48.2",
"react-redux": "^9.2.0",
"react-router-dom": "^6.23.1",
"react-scrollbar-size": "^5.0.0",
"react-syntax-highlighter": "^15.5.0",
"react-transition-group": "^4.4.5",
"recharts": "^2.6.2",
"redux-remember": "^5.2.0",
"semver": "^7.5.4",
"squarify": "^1.1.0",
"styled-components": "^6.1.13",
"uuid": "^9.0.1",
"zustand": "^4.5.5",
"zustand-slices": "^0.3.0"
}
}