-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
84 lines (84 loc) · 2.59 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
{
"name": "client",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"build": "tsc && vite build",
"cy:e2e": "start-server-and-test dev http-get://localhost:5173 cy:run-e2e",
"cy:open-e2e": "cypress open --e2e --browser chrome",
"cy:open-unit": "cypress open --component --browser chrome",
"cy:run-e2e": "cypress run --e2e",
"cy:run-unit": "cypress run --component",
"dev": "vite",
"format": "prettier --write .",
"format-check": "prettier --check .",
"lint": "eslint .",
"prepare": "husky install",
"preview": "vite preview",
"test": "jest"
},
"dependencies": {
"@fontsource/inter": "^4.5.15",
"@headlessui/react": "^1.7.19",
"@heroicons/react": "^2.1.5",
"date-fns": "^2.30.0",
"flexsearch": "^0.7.21",
"formik": "^2.4.6",
"formik-persist-values": "^1.4.1",
"framer-motion": "^11.11.9",
"immer": "^10.1.1",
"lodash": "^4.17.21",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-error-boundary": "^4.0.13",
"react-feather": "^2.0.10",
"react-helmet-async": "^2.0.5",
"react-icons": "^4.12.0",
"react-infinite-scroll-component": "^6.1.0",
"react-loading-skeleton": "^3.4.0",
"react-minimal-pie-chart": "^8.4.0",
"react-router-dom": "^6.25.1",
"react-vis-graph-wrapper": "^0.1.3",
"sonner": "^0.7.4",
"tailwind-merge": "^1.14.0",
"uuid": "^9.0.1",
"yup": "^1.4.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.1.0",
"@testing-library/user-event": "^14.5.2",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/flexsearch": "^0.7.6",
"@types/jest": "^29.5.14",
"@types/lodash": "^4.17.7",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/uuid": "^9.0.8",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"@vitejs/plugin-react": "^3.1.0",
"autoprefixer": "^10.4.19",
"concurrently": "^8.2.2",
"cypress": "^12.17.4",
"eslint": "^8.57.0",
"eslint-plugin-tailwindcss": "^3.17.4",
"husky": "^8.0.3",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-transformer-svg": "^2.0.2",
"lint-staged": "^13.3.0",
"postcss": "^8.4.39",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.5.14",
"start-server-and-test": "^2.0.4",
"tailwindcss": "^3.4.6",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.9.5",
"vite": "^4.5.3"
}
}