-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
71 lines (71 loc) · 2.04 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
{
"name": "planewreck",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"test:coverage": "vitest --coverage",
"test:ui": "vitest --ui",
"test": "vitest",
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"lint": "eslint .",
"lint:fix": "eslint --fix ."
},
"dependencies": {
"@heroicons/react": "^2.1.1",
"@hookform/resolvers": "^3.4.2",
"@material-tailwind/html": "^2.2.2",
"axios": "^1.6.7",
"daisyui": "^4.11.1",
"date-fns": "^3.3.1",
"dotenv": "^16.4.5",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-daisyui": "^5.0.0",
"react-date-picker": "^10.6.0",
"react-datepicker": "^6.9.0",
"react-day-picker": "^8.10.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.51.5",
"react-router-dom": "^6.22.2",
"use-react-countries": "^2.0.0",
"vite-tsconfig-paths": "^4.3.2",
"yup": "^1.4.0"
},
"devDependencies": {
"@babel/core": "^7.23.9",
"@babel/preset-env": "^7.23.9",
"@babel/preset-react": "^7.23.3",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^14.2.1",
"@types/react": "^18.2.79",
"@types/react-dom": "^18.2.25",
"@typescript-eslint/eslint-plugin": "^7.7.1",
"@typescript-eslint/parser": "^7.7.1",
"@vitejs/plugin-react": "^4.2.1",
"@vitest/coverage-v8": "^1.3.1",
"@vitest/ui": "^1.3.1",
"autoprefixer": "^10.4.18",
"babel-jest": "^29.7.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-cypress": "^2.15.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jsdom": "^24.0.0",
"postcss": "^8.4.35",
"prettier": "^3.2.5",
"tailwindcss": "^3.4.1",
"typescript": "^5.4.5",
"vite": "^5.1.4",
"vite-plugin-eslint": "^1.8.1",
"vitest": "^1.3.1"
}
}