-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.1 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
{
"name": "hitchlog-nextjs",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev -p 3000",
"devInspect": "NODE_OPTIONS='--inspect' next dev",
"build": "next build",
"fix": "eslint --fix --ext .js,.jsx,.ts,.tsx .",
"start": "next start",
"lint": "next lint",
"test": "jest --watch",
"test:e2e": "playwright test"
},
"dependencies": {
"@googlemaps/js-api-loader": "^1.16.2",
"@googlemaps/react-wrapper": "^1.1.35",
"@react-jvectormap/core": "^1.0.4",
"@react-jvectormap/world": "^1.1.2",
"@types/google.maps": "^3.54.10",
"@types/jquery": "^3.5.29",
"@types/js-cookie": "^3.0.6",
"@types/md5": "^2.3.5",
"autoprefixer": "^10.4.16",
"axios": "^0.27.2",
"canvas-confetti": "^1.9.2",
"chart.js": "^3.9.1",
"classnames": "^2.3.2",
"flowbite": "^1.8.1",
"flowbite-react": "^0.7.2",
"formik": "^2.4.5",
"framer-motion": "^7.10.3",
"google-maps-react": "^2.0.6",
"jquery": "^3.7.1",
"js-cookie": "^3.0.5",
"logrocket": "^3.0.1",
"md5": "^2.3.0",
"moment": "^2.29.4",
"next": "13.5.3",
"next-themes": "^0.2.1",
"postcss": "^8.4.32",
"react": "18.2.0",
"react-chartjs-2": "^4.3.1",
"react-country-flag": "^3.1.0",
"react-dom": "18.2.0",
"react-icons": "^4.12.0",
"react-markdown": "^8.0.7",
"react-spinners": "^0.13.8",
"tailwindcss": "^3.3.6",
"uuid": "^9.0.1",
"yup": "^0.32.11"
},
"devDependencies": {
"@googlemaps/jest-mocks": "^2.21.4",
"@jest/globals": "^29.7.0",
"@playwright/test": "^1.40.1",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^13.4.0",
"@types/jest": "^29.5.11",
"@types/node": "18.0.0",
"@types/react": "18.2.45",
"@types/react-dom": "18.2.18",
"@types/uuid": "^8.3.4",
"eslint": "8.56.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-next": "13.0.1",
"eslint-plugin-import": "^2.29.1",
"flowbite-typography": "^1.0.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"ts-jest": "^29.1.1",
"typescript": "4.7.4"
}
}