-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.63 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
{
"name": "fittrax-bl0ijq",
"version": "1.0.0",
"description": "A web application for fitness enthusiasts to track their progress, set goals, and share their achievements with friends",
"main": "server/index.js",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format": "prettier --write \"**/*.{js,ts,jsx,tsx,json,md}\"",
"test": "jest",
"build:api": "tsc && tsc-watch --onSuccess \"nodemon server/index.js\"",
"docker:build": "docker build -t fittrax-bl0ijq .",
"docker:run": "docker run -d -p 3000:3000 fittrax-bl0ijq"
},
"repository": {
"type": "git",
"url": "git+https://github.com/spectra-ai-codegen/FitTrax-bl0ijq.git"
},
"author": "Spectra.Codes",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/spectra-ai-codegen/FitTrax-bl0ijq/issues"
},
"homepage": "https://github.com/spectra-ai-codegen/FitTrax-bl0ijq#readme",
"devDependencies": {
"@types/express": "^4.17.17",
"@types/jest": "^29.5.2",
"@types/node": "^18.16.12",
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
"autoprefixer": "^10.4.14",
"eslint": "^8.42.0",
"eslint-config-next": "^13.4.12",
"jest": "^29.5.0",
"next": "^14.0.0",
"postcss": "^8.4.24",
"prettier": "^3.0.0",
"tailwindcss": "^3.3.3",
"typescript": "^5.0.4"
},
"dependencies": {
"@supabase/supabase-js": "^2.2.0",
"axios": "^1.4.0",
"chart.js": "^4.2.1",
"express": "^4.18.2",
"next-auth": "^4.20.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"supabase": "^2.1.0",
"zustand": "^4.3.7"
}
}