-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.09 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.09 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
{
"name": "ecommerce",
"version": "1.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint src --ext ts,tsx,js,jsx --report-unused-disable-directives",
"lint:fix": "eslint src --ext js,jsx,ts,tsx --fix ",
"format": "prettier --write 'src/**/*.{js,jsx,ts,tsx,css,html}'",
"check-format": "prettier --check 'src/**/*.{js,jsx,ts,tsx,css,html}'",
"precommit": "npm run lint:fix && npm run format && git add .",
"test": "vitest run",
"test:watch": "vitest --watch",
"prepare": "husky"
},
"dependencies": {
"@headlessui/react": "^2.2.0",
"@heroicons/react": "^2.2.0",
"@microsoft/fetch-event-source": "^2.0.1",
"@next/third-parties": "^15.3.0",
"@pharmatech/sdk": "^0.4.22",
"@radix-ui/react-slider": "^1.2.4",
"@react-google-maps/api": "^2.20.6",
"@types/google.maps": "^3.58.1",
"cloudinary": "^2.6.0",
"jwt-decode": "^4.0.0",
"lucide-react": "^0.477.0",
"next": "^15.3.0",
"npm": "^11.2.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-icons": "^5.5.0",
"react-router-dom": "^7.3.0",
"react-toastify": "^11.0.5",
"socket.io-client": "^4.8.1",
"tailgrids": "^2.2.7",
"tailwind-scrollbar-hide": "^2.0.0",
"use-places-autocomplete": "^4.0.1",
"zod": "^3.24.2"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.2.0",
"@types/jwt-decode": "^2.2.1",
"@types/node": "^20",
"@types/react": "^19.0.10",
"@types/react-dom": "^19",
"@types/socket.io-client": "^1.4.36",
"@vitejs/plugin-react": "^4.3.4",
"eslint": "^9",
"eslint-config-next": "15.1.7",
"eslint-config-prettier": "^10.0.1",
"husky": "^9.1.7",
"jsdom": "^26.0.0",
"lint-staged": "^15.4.3",
"postcss": "^8",
"prettier": "3.5.2",
"prettier-plugin-tailwindcss": "^0.6.11",
"tailwindcss": "^3.4.1",
"typescript": "^5.7.3",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.0.6"
}
}