-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
77 lines (77 loc) · 2.13 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
{
"name": "track-it",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"tsc": "tsc",
"prettier": "prettier --write .",
"test": "jest",
"test-dev": "jest --watch",
"cypress:open": "cypress open --e2e",
"e2e": "start-server-and-test dev http://localhost:3000 \"cypress open --e2e\"",
"e2e:headless": "start-server-and-test dev http://localhost:3000 \"cypress run --e2e\""
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --write"
]
},
"dependencies": {
"@hello-pangea/dnd": "^16.3.0",
"@radix-ui/react-context-menu": "^2.1.4",
"@radix-ui/react-dialog": "^1.0.4",
"@radix-ui/react-dropdown-menu": "^2.0.5",
"@radix-ui/react-popover": "^1.0.6",
"@radix-ui/react-select": "^1.2.2",
"@radix-ui/react-tabs": "^1.0.4",
"@radix-ui/react-tooltip": "^1.0.6",
"@react-google-maps/api": "^2.18.1",
"@types/node": "20.3.3",
"@types/react": "18.2.14",
"@types/react-dom": "18.2.6",
"@vercel/analytics": "^1.0.1",
"autoprefixer": "10.4.14",
"axios": "^1.4.0",
"clsx": "^2.0.0",
"date-fns": "^2.30.0",
"eslint": "8.44.0",
"eslint-config-next": "13.4.8",
"framer-motion": "^10.12.22",
"fuse.js": "^6.6.2",
"next": "13.4.8",
"postcss": "8.4.24",
"react": "18.2.0",
"react-device-detect": "^2.2.3",
"react-dom": "18.2.0",
"react-hot-toast": "^2.4.1",
"react-icons": "^4.10.1",
"react-loading-skeleton": "^3.3.1",
"react-selecto": "^1.26.0",
"react-wrap-balancer": "^1.0.0",
"tailwind-merge": "^1.14.0",
"tailwindcss": "3.3.2",
"typescript": "5.1.6",
"zod": "^3.21.4"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"@typescript-eslint/parser": "^5.61.0",
"axios-mock-adapter": "^1.21.5",
"cypress": "^12.17.3",
"eslint-config-prettier": "^8.8.0",
"husky": "^8.0.3",
"jest": "^29.6.1",
"jest-environment-jsdom": "^29.6.0",
"lint-staged": "^13.2.3",
"prettier": "^3.0.0",
"prettier-plugin-tailwindcss": "^0.4.1",
"pretty-quick": "^3.1.3",
"start-server-and-test": "^2.0.0"
}
}