-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.37 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
{
"name": "frontend",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"trigger": "npx wait-on http://localhost:3000 && node cron.js",
"depl": "concurrently npm:dev npm:trigger --names \"NEXT,TRIG\" -c \"white.bgBlackBright.bold,white.bgRed.bold\""
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.4.2",
"@fortawesome/free-brands-svg-icons": "^6.4.2",
"@fortawesome/free-regular-svg-icons": "^6.4.2",
"@fortawesome/free-solid-svg-icons": "^6.4.2",
"@fortawesome/react-fontawesome": "^0.2.0",
"@nextui-org/react": "^2.1.13",
"@supabase/auth-helpers-nextjs": "^0.8.1",
"@supabase/supabase-js": "^2.38.0",
"axios": "^1.6.8",
"colorette": "^2.0.20",
"concurrently": "^8.2.1",
"dotenv": "^16.3.1",
"framer-motion": "^10.16.4",
"lodash": "^4.17.21",
"next": "^14.2.10",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hot-toast": "^2.4.1",
"wait-on": "^7.0.1"
},
"devDependencies": {
"@types/node": "latest",
"@types/node-cron": "^3.0.9",
"@types/react": "latest",
"@types/react-dom": "latest",
"autoprefixer": "latest",
"eslint": "latest",
"eslint-config-next": "latest",
"postcss": "latest",
"tailwindcss": "latest",
"typescript": "latest"
}
}