-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
182 lines (182 loc) · 5.91 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
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
{
"name": "synmetrix-client",
"version": "1.0.0",
"scripts": {
"build": "vite build",
"postbuild": "tar -czvf dist.tar.gz dist && zip -r dist.zip dist",
"build-storybook": "storybook build",
"codegen": "graphql-codegen",
"codegen:watch": "graphql-codegen --watch",
"dev": "cross-env BROWSER=chrome vite --host",
"dev:force": "npm run dev -- --force",
"lint": "npm run lint:js && tsc",
"lint-staged": "lint-staged",
"lint-staged:js": "eslint --ext .js,.jsx,.ts,.tsx",
"lint:fix": "eslint --fix --cache --ext .js,.jsx,.ts,.tsx --format=pretty ./src",
"lint:js": "eslint --cache --ext .js,.jsx,.ts,.tsx --format=pretty ./src",
"loadschema": "gq http://localhost:8080/v1/graphql -H \"X-Hasura-Admin-Secret: devsecret\" --introspect --format json > src/graphql/schemas/hasura.json",
"prepare": "husky install .husky",
"prettier": "prettier --check --write \"src/**/*\"",
"semantic-release": "semantic-release",
"serve": "vite preview --host",
"start": "npm run dev",
"storybook": "storybook dev -p 6007",
"test": "vitest"
},
"lint-staged": {
"{,!(node_modules)/**/}*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
]
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 10"
],
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/github",
{
"assets": [
"dist.zip",
"dist.tar.gz"
]
}
]
]
},
"dependencies": {
"@ant-design/icons": "^5.1.4",
"@ant-design/pro-card": "^2.4.1",
"@ant-design/pro-layout": "^7.12.1",
"@apollo/client": "^3.7.12",
"@monaco-editor/react": "^4.5.2",
"@urql/exchange-auth": "^2.1.6",
"@urql/exchange-retry": "^1.2.0",
"@vitjs/runtime": "^0.9.2",
"ahooks": "^3.7.8",
"antd": "^5.13.1",
"classnames": "^2.3.2",
"copy-to-clipboard": "^3.3.3",
"cronstrue": "^2.31.0",
"dayjs": "^1.11.10",
"dequal": "^2.0.3",
"graphql": "^16.6.0",
"graphql-ws": "^5.14.0",
"i18next": "^23.2.3",
"i18next-browser-languagedetector": "^7.1.0",
"i18next-http-backend": "^2.2.1",
"immer": "^10.0.2",
"js-yaml": "^4.1.0",
"jszip": "^3.10.1",
"jwt-decode": "^3.1.2",
"marked": "^10.0.0",
"md5": "^2.3.0",
"moment": "^2.29.4",
"monaco-editor": "^0.41.0",
"nanoid": "^4.0.2",
"prismjs": "^1.29.0",
"react": "^18.2.0",
"react-csv": "^2.2.2",
"react-custom-scrollbars": "^4.2.1",
"react-dom": "^18.2.0",
"react-fast-marquee": "^1.5.2",
"react-hook-form": "^7.45.1",
"react-i18next": "^13.0.1",
"react-resizable": "^3.0.5",
"react-responsive-masonry": "^2.1.7",
"react-responsive-modal": "^6.4.2",
"react-router-dom": "^6.15.0",
"react-table": "^7.8.0",
"react-virtualized": "^9.22.5",
"swiper": "^10.0.4",
"unchanged": "^2.2.1",
"urql": "^4.0.5",
"use-local-storage-state": "^19.1.0",
"zustand": "^4.4.1"
},
"devDependencies": {
"@babel/core": "^7.21.3",
"@graphql-codegen/cli": "^5.0.0",
"@graphql-codegen/client-preset": "^4.1.0",
"@graphql-codegen/introspection": "^4.0.0",
"@graphql-codegen/named-operations-object": "^3.0.0",
"@graphql-codegen/typescript": "^4.0.1",
"@graphql-codegen/typescript-operations": "^4.0.1",
"@graphql-codegen/typescript-urql": "^4.0.0",
"@honkhonk/vite-plugin-svgr": "^1.1.0",
"@semantic-release/commit-analyzer": "^11.1.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^9.2.6",
"@semantic-release/release-notes-generator": "^12.1.0",
"@storybook/addon-actions": "^7.4.5",
"@storybook/addon-essentials": "^7.4.5",
"@storybook/addon-interactions": "^7.4.5",
"@storybook/addon-links": "^7.4.5",
"@storybook/addon-mdx-gfm": "^7.4.5",
"@storybook/react": "^7.4.5",
"@storybook/react-vite": "^7.4.5",
"@storybook/testing-library": "^0.2.1",
"@svgx/vite-plugin-react": "^1.0.1",
"@testing-library/dom": "^9.3.3",
"@testing-library/jest-dom": "^6.1.4",
"@testing-library/react": "^14.1.0",
"@testing-library/user-event": "^14.5.1",
"@types/babel__core": "^7.20.0",
"@types/classnames": "^2.3.0",
"@types/md5": "^2.3.4",
"@types/node": "^18.16.0",
"@types/prismjs": "^1.26.1",
"@types/react": "^18.2.0",
"@types/react-csv": "^1.1.6",
"@types/react-custom-scrollbars": "^4.0.13",
"@types/react-dom": "^18.2.0",
"@types/react-resizable": "^3.0.6",
"@types/react-responsive-masonry": "^2.1.3",
"@types/react-table": "^7.7.15",
"@types/react-virtualized": "^9.21.22",
"@typescript-eslint/eslint-plugin": "^5.59.1",
"@typescript-eslint/parser": "^5.59.1",
"@umijs/fabric": "^2.14.1",
"@vitejs/plugin-react": "^4.2.1",
"@vitjs/vit": "^0.9.1",
"babel-loader": "^9.1.2",
"cross-env": "^7.0.3",
"eslint": "^8.39.0",
"eslint-config-prettier": "^8.7.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-storybook": "^0.6.14",
"eslint-plugin-unicorn": "^46.0.0",
"graphqurl": "^1.0.1",
"husky": ">=8",
"jsdom": "^22.1.0",
"less": "^4.1.3",
"lint-staged": ">=13",
"rollup-plugin-copy": "^3.5.0",
"rollup-plugin-visualizer": "^5.9.0",
"semantic-release": "^23.0.0",
"storybook": "^7.4.5",
"typescript": "^5.0.4",
"unplugin-auto-import": "^0.15.3",
"vite": "^4.4.9",
"vite-plugin-imp": "^2.4.0",
"vite-plugin-monaco-editor": "^1.1.0",
"vite-plugin-rewrite-all": "^1.0.1",
"vite-plugin-svg-loader": "^1.0.0",
"vite-plugin-windicss": "^1.8.10",
"vite-tsconfig-paths": "^4.2.0",
"vitest": "^0.34.6",
"windicss": "^3.5.6"
},
"engines": {
"node": ">=20.8.1"
}
}