-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathpackage.json
136 lines (136 loc) · 5.49 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
{
"name": "moira-front",
"version": "1.1.0",
"license": "MIT",
"scripts": {
"prepare": "husky install",
"prepare:lezer": "lezer-generator src/TriggerGrammar/TriggerGrammar.grammar -o src/TriggerGrammar/parser.ts",
"serve": "webpack-dev-server --mode=development --static ./dist",
"start": "npm-run-all --parallel serve fakeapi",
"start:dev-proxy": "yarn serve --config webpack.config.dev-proxy.js",
"start:port-forward": "yarn serve --config webpack.config.port-forward.js",
"start:docker": "npm-run-all --parallel backend start:docker-proxy",
"start:docker-proxy": "yarn serve --config webpack.config.docker-proxy.js",
"backend": "docker compose -f src/tests/core/api/docker-compose.yml down --rmi all && docker compose -f src/tests/core/api/docker-compose.yml up",
"build": "webpack --mode=production",
"storybook": "cross-env NODE_ENV=development storybook dev -p 9001 -c .storybook --ci ",
"storybook:ci": "yarn storybook --ci --quiet",
"fakeapi": "json-server --watch fakeapi/db.json --routes fakeapi/routes.json --port 9002",
"lint": "eslint --ext .tsx --ext .ts src/",
"test": "cross-env NODE_ENV=testing jest \"./src\"",
"test:e2e": "start-server-and-test \"yarn start:docker\" http://localhost:9000 \"npx playwright test e2eTests/\"",
"prettier": "prettier \"./src/**/*.{ts,tsx}\"",
"pw:screenshotTest": "cross-env SKIP_SETUP=true xvfb-run npx playwright test screenshotTests/screenshotTest.spec.ts",
"screenshots": "start-server-and-test storybook:ci http://localhost:9001 pw:screenshotTest"
},
"dependencies": {
"@lezer/highlight": "1.1.6",
"@reduxjs/toolkit": "2.2.1",
"@sentry/react": "7.81.1",
"@skbkontur-moira/codemirror-metricsql": "0.0.1-dev.1809240003",
"@skbkontur/react-icons": "5.2.9",
"@skbkontur/react-stack-layout": "1.0.3",
"@skbkontur/react-ui": "4.16.0",
"@skbkontur/react-ui-validations": "1.13.0",
"@tanstack/react-table": "8.17.3",
"@types/codemirror": "5.60.1",
"chart.js": "4.4.1",
"chartjs-adapter-date-fns": "3.0.0",
"chartjs-plugin-zoom": "^2.0.1",
"codemirror": "6.0.1",
"color-hash": "1.0.3",
"date-fns": "2.9.0",
"dompurify": "3.1.3",
"file-saver": "2.0.2",
"jest": "29.7.0",
"lodash": "4.17.21",
"npm-run-all": "4.1.5",
"numeral": "2.0.6",
"query-string": "6.4.0",
"react": "16.14.0",
"react-animate-height": "2.0.23",
"react-chartjs-2": "5.2.0",
"react-dom": "16.14.0",
"react-favicon": "2.0.7",
"react-foco": "1.2.0",
"react-hot-loader": "4.13.0",
"react-markdown": "8.0.7",
"react-redux": "8.1.3",
"react-router": "5.1.2",
"react-router-dom": "5.1.2",
"react-virtualized-auto-sizer": "1.0.20",
"reflect-metadata": "0.1.13",
"remark-breaks": "4.0.0",
"start-server-and-test": "2.0.3",
"uuid": "9.0.1"
},
"devDependencies": {
"@babel/core": "7.23.3",
"@babel/preset-env": "7.23.3",
"@babel/preset-typescript": "7.13.0",
"@hot-loader/react-dom": "16.13.0",
"@lezer/generator": "1.0.0",
"@playwright/test": "1.40.1",
"@storybook/addon-actions": "7.6.17",
"@storybook/addons": "7.6.17",
"@storybook/react": "7.6.17",
"@storybook/react-webpack5": "7.6.17",
"@types/classnames": "2.2.10",
"@types/color-hash": "1.0.0",
"@types/dompurify": "3.0.4",
"@types/file-saver": "2.0.1",
"@types/jest": "26.0.9",
"@types/lodash": "4.14.159",
"@types/numeral": "0.0.28",
"@types/react": "16.9.43",
"@types/react-dom": "16.9.8",
"@types/react-router-dom": "5.1.5",
"@types/react-window": "1.8.5",
"@types/webpack-env": "1.18.4",
"@typescript-eslint/eslint-plugin": "6.9.0",
"@typescript-eslint/parser": "6.9.0",
"classnames": "2.2.6",
"cross-env": "5.2.0",
"css-loader": "6.8.1",
"dotenv": "16.3.1",
"eslint": "7.7.0",
"eslint-config-prettier": "6.11.0",
"eslint-plugin-babel": "5.3.0",
"eslint-plugin-import": "2.22.0",
"eslint-plugin-jsx-a11y": "6.2.1",
"eslint-plugin-prettier": "3.1.4",
"eslint-plugin-react": "7.33.2",
"eslint-plugin-react-hooks": "4.1.0",
"file-loader": "6.0.0",
"html-loader": "4.2.0",
"html-webpack-plugin": "5.5.3",
"husky": "8.0.3",
"json-server": "0.17.4",
"less": "4.2.0",
"less-loader": "11.1.3",
"mini-css-extract-plugin": "2.7.6",
"mockdate": "3.0.2",
"prettier": "2.0.5",
"react-docgen-typescript-plugin": "0.6.0",
"react-window": "1.8.9",
"regenerator-runtime": "0.13.5",
"storybook": "7.6.17",
"style-loader": "3.3.3",
"terser-webpack-plugin": "5.3.9",
"ts-loader": "9.5.1",
"typescript": "5.2.2",
"webpack": "5.94.0",
"webpack-bundle-analyzer": "4.9.1",
"webpack-cli": "5.1.4",
"webpack-dev-server": "4.15.1",
"webpack-merge": "5.9.0",
"workbox-webpack-plugin": "7.1.0"
},
"resolutions": {
"@types/react-router": "5.1.18",
"@types/react": "16.9.43",
"@types/history": "4.7.11",
"event-source-polyfill": "1.0.25",
"es5-ext": "0.10.53"
}
}