-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.82 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
{
"name": "the-rhapsodies",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "npm run test:jest && npm run cy:run",
"test:jest": "node ./node_modules/jest/bin/jest.js --passWithNoTests",
"cy:open": "cypress open",
"cy:run": "cypress run --config video=false",
"prepare": "husky install"
},
"dependencies": {
"@heroicons/react": "^2.0.17",
"@reduxjs/toolkit": "^2.0.0",
"@supabase/auth-helpers-nextjs": "^0.10.0",
"@supabase/auth-helpers-react": "^0.5.0",
"@supabase/supabase-js": "^2.25.0",
"@types/node": "20.16.3",
"@types/react": "18.3.5",
"@types/react-dom": "18.3.0",
"autoprefixer": "10.4.20",
"date-fns": "^3.0.0",
"debounce": "^2.0.0",
"dotenv": "^16.0.3",
"eslint": "8.57.0",
"eslint-config-next": "14.2.7",
"next": "14.2.7",
"next-pwa": "^5.6.0",
"next-redux-wrapper": "^8.1.0",
"postcss": "8.4.44",
"react": "18.3.1",
"react-datepicker": "^6.0.0",
"react-dom": "18.3.1",
"react-hook-form": "^7.43.9",
"react-onesignal": "^3.0.1",
"react-redux": "^9.0.0",
"react-toastify": "^10.0.0",
"remark": "^15.0.1",
"remark-html": "^16.0.0",
"tailwindcss": "3.4.10",
"typescript": "5.3.3"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.9",
"@types/debounce": "^1.2.1",
"@types/jest": "^29.5.1",
"@types/react-datepicker": "^6.0.0",
"cypress": "^13.0.0",
"cypress-cdp": "^1.4.19",
"eslint-config-prettier": "^9.0.0",
"husky": "^9.0.0",
"jest": "^29.5.0",
"lint-staged": "^15.0.0",
"prettier": "^3.0.0",
"prettier-plugin-tailwindcss": "^0.6.0",
"supabase": "^1.75.2",
"tailwindcss-animated": "^1.0.1",
"ts-jest": "^29.1.0"
}
}