-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.73 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 2.73 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
{
"name": "servicemodule",
"version": "0.1.0",
"type": "module",
"private": true,
"dependencies": {
"@buerokratt-ria/header": "^0.1.9",
"@buerokratt-ria/menu": "^0.1.16",
"@buerokratt-ria/styles": "^0.0.1",
"@fontsource/roboto": "^4.5.8",
"@formkit/auto-animate": "^1.0.0-beta.6",
"@hookform/resolvers": "^2.9.11",
"@radix-ui/react-tabs": "^1.0.1",
"@radix-ui/react-toast": "^1.1.2",
"@rjsf/core": "^5.2.0",
"@rjsf/validator-ajv8": "^5.2.1",
"@tanstack/match-sorter-utils": "^8.7.6",
"@tanstack/react-query": "^4.23.0",
"@tanstack/react-table": "^8.7.9",
"@vitejs/plugin-react": "^4.0.4",
"axios": "^1.2.2",
"axios-mock-adapter": "^1.21.5",
"clsx": "^1.2.1",
"date-fns": "^2.29.3",
"downshift": "^7.2.0",
"eslint-plugin-prettier": "^4.2.1",
"framer-motion": "^11.0.14",
"howler": "^2.2.4",
"i18next": "^23.12.2",
"i18next-browser-languagedetector": "^7.0.1",
"moment": "^2.29.4",
"msw": "^0.49.2",
"overlayscrollbars": "^1.13.1",
"overlayscrollbars-react": "^0.2.3",
"radix-ui": "^1.0.1",
"react": "^18.2.0",
"react-cookie": "^4.1.1",
"react-datepicker": "^4.10.0",
"react-dnd": "^16.0.1",
"react-dnd-html5-backend": "^16.0.1",
"react-dom": "^18.2.0",
"react-hook-form": "^7.43.1",
"react-i18next": "^12.1.4",
"react-icons": "^4.7.1",
"react-idle-timer": "^5.7.2",
"react-quill": "^2.0.0",
"react-router-dom": "^6.6.2",
"react-textarea-autosize": "^8.4.0",
"reactflow": "^11.7.0",
"rxjs": "^7.8.0",
"sass": "^1.57.1",
"sass-loader": "^13.2.0",
"to-json-schema": "^0.2.5",
"typescript": "^4.9.4",
"uuid": "^9.0.0",
"vite": "^4.4.9",
"vite-plugin-svgr": "^3.2.0",
"vite-tsconfig-paths": "^4.2.0",
"yup": "^1.0.0"
},
"scripts": {
"build": "tsc && vite build",
"preview": "vite preview",
"lint": "tsc --noEmit && eslint \"./src/**/*.{js,ts,tsx}\"",
"prettier": "prettier --write \"{,!(node_modules)/**/}*.{ts,tsx,js,json,css,less,scss}\"",
"dev": "vite --host",
"start": "vite --host"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
"defaults",
"not IE 11"
],
"homepage": "/services/",
"devDependencies": {
"@babel/preset-env": "^7.20.2",
"@types/howler": "^2.2.11",
"@types/react": "^18.0.26",
"@types/react-datepicker": "^4.8.0",
"@types/react-dom": "^18.0.10",
"@types/to-json-schema": "^0.2.1",
"@types/uuid": "^9.0.1",
"@vitejs/plugin-react": "^3.0.0",
"vite": "^4.0.0",
"vite-plugin-env-compatible": "^1.1.1",
"vite-plugin-svgr": "^2.4.0",
"vite-tsconfig-paths": "^4.0.3",
"react-scripts": "^5.0.1"
},
"msw": {
"workerDirectory": "public"
}
}