-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
74 lines (74 loc) · 2.01 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": "rent-shield",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prepare": "husky install",
"prettier": "npx prettier . --write",
"test": "npx cypress run",
"ci": "next build && start-server-and-test http://localhost:3000 test",
"cy:run": "start-test 3000",
"cy:open": "cypress open",
"jest": "jest"
},
"dependencies": {
"@googlemaps/js-api-loader": "^1.16.2",
"@supabase/auth-helpers-nextjs": "^0.7.3",
"@supabase/supabase-js": "^2.31.0",
"@types/node": "20.4.2",
"@types/uuid": "^9.0.2",
"autoprefixer": "10.4.14",
"eslint": "8.45.0",
"eslint-config-next": "13.4.10",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^5.0.0-canary-7118f5dd7-20230705",
"flowbite": "^1.7.0",
"flowbite-react": "^0.4.11",
"next": "13.4.10",
"postcss": "8.4.26",
"react": "18.2.0",
"react-async": "^10.0.1",
"react-dom": "18.2.0",
"react-icons": "^4.10.1",
"tailwindcss": "3.3.3",
"uuid": "^9.0.0"
},
"devDependencies": {
"@jest/globals": "^29.6.1",
"@next/eslint-plugin-next": "^13.4.10",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^14.0.0",
"@types/eslint": "^8",
"@types/google.maps": "^3.53.5",
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
"cypress": "^12.17.1",
"dotenv": "^16.3.1",
"husky": "^8.0.3",
"jest-environment-jsdom": "^29.6.1",
"lint-staged": "^13.2.3",
"pinst": "^3.0.0",
"prettier": "3.0.0",
"react-router-dom": "^6.14.2",
"start-server-and-test": "^2.0.0",
"supabase": "^1.77.9",
"ts-jest": "^29.1.1",
"ts-node-dev": "^2.0.0",
"typescript": "^5.1.6"
},
"volta": {
"node": "18.17.0"
},
"lint-staged": {
"*.{js,css,md,ts,tsx,jsx}": [
"prettier --write",
"eslint"
]
}
}