-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 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
{
"name": "gym-tracker",
"private": true,
"version": "0.0.0",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint . --ext js,jsx,ts,tsx --report-unused-disable-directives --max-warnings 0",
"prisma:migrate:dev": "prisma migrate dev",
"start:migrate:dev": "npm run prisma:migrate:dev && npm run start:dev"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.5.2",
"@fortawesome/free-regular-svg-icons": "^6.6.0",
"@fortawesome/free-solid-svg-icons": "^6.5.2",
"@fortawesome/react-fontawesome": "^0.2.2",
"@next-auth/prisma-adapter": "^1.0.7",
"@prisma/client": "^5.18.0",
"@radix-ui/react-dropdown-menu": "^2.1.1",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-slot": "^1.1.0",
"axios": "^1.7.4",
"bcrypt": "^5.1.1",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"fast-glob": "^3.3.2",
"lucide-react": "^0.263.1",
"micromatch": "^4.0.7",
"next": "^14.2.4",
"next-auth": "^4.24.7",
"next-transpile-modules": "^10.0.1",
"react": "^18.3.1",
"react-beautiful-dnd": "^13.1.1",
"react-calendar": "^5.0.0",
"react-dom": "^18.3.1",
"react-dropdown": "^1.11.0",
"react-icons": "^5.3.0",
"react-modal": "^3.16.1",
"react-select": "^5.8.0",
"styled-components": "^6.1.11",
"tailwind-merge": "^2.5.2",
"tailwindcss-animate": "^1.0.7",
"typescript": "^5.5.2"
},
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/react": "^18.3.3",
"@types/react-beautiful-dnd": "^13.1.8",
"@types/react-dom": "^18.3.0",
"@types/react-modal": "^3.16.3",
"autoprefixer": "^10.4.19",
"css-loader": "^7.1.2",
"eslint": "^8.57.0",
"eslint-config-next": "^14.2.12",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.0",
"postcss": "^8.4.39",
"postcss-loader": "^8.1.1",
"prisma": "^5.19.1",
"style-loader": "^4.0.0",
"tailwindcss": "^3.4.10",
"ts-node": "^10.9.2"
}
}