-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.34 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
{
"name": "awesome-react-components",
"version": "1.0.0",
"scripts": {
"dev": "vite --port 4321",
"build": "tsc && vite build",
"serve": "vite preview"
},
"dependencies": {
"@ant-design/icons": "^4.6.2",
"@emotion/css": "^11.11.2",
"@fc-components/menu": "~1.1.21",
"@grafana/lezer-logql": "^0.2.2",
"@grafana/monaco-logql": "^0.0.7",
"@monaco-editor/react": "^4.6.0",
"@svgr/core": "^5.5.0",
"@svgr/plugin-svgo": "^5.5.0",
"antd": "4.17.4",
"classnames": "^2.3.1",
"d3": "^4.10.0",
"i18next": "^20.3.2",
"lodash": "^4.17.21",
"moment": "^2.29.1",
"react": "^17.0.0",
"react-dom": "^17.0.0",
"react-i18next": "^11.11.1",
"react-router-dom": "^5.2.0",
"react-spring": "9.4.5",
"react-use": "^17.3.1",
"uuid": "^9.0.1"
},
"devDependencies": {
"@rollup/pluginutils": "^4.1.1",
"@types/node": "^15.0.1",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/react-router-dom": "^5.1.7",
"@vitejs/plugin-react-refresh": "^1.3.1",
"less": "^4.1.1",
"lint-staged": "^11.0.0",
"typescript": "4.3.2",
"vite": "^2.1.5",
"vite-plugin-react-svg": "^0.2.0"
},
"lint-staged": {
"*.{ts,tsx,less,md,json}": [
"prettier --write"
],
"*.ts?(x)": [
"prettier --write",
"git add"
]
}
}