-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.47 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
{
"name": "finance-tracker",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"generate": "graphql-codegen --config codegen.yml"
},
"dependencies": {
"@apollo/client": "^3.11.5",
"@apollo/server": "^4.11.0",
"@as-integrations/next": "^3.1.0",
"@graphql-tools/graphql-file-loader": "^8.0.1",
"@graphql-tools/load": "^8.0.2",
"@headlessui/react": "^2.1.3",
"@heroicons/react": "^2.1.5",
"@prisma/client": "^5.19.0",
"@tanstack/react-table": "^8.20.5",
"apollo-server-micro": "^3.13.0",
"bcryptjs": "^2.4.3",
"dotenv": "^16.4.5",
"graphql": "^16.9.0",
"jsonwebtoken": "^9.0.2",
"lucide-react": "^0.438.0",
"next": "14.2.7",
"pg": "^8.12.0",
"react": "^18",
"react-dom": "^18",
"shadcn-ui": "^0.9.0"
},
"devDependencies": {
"@graphql-codegen/cli": "^5.0.2",
"@graphql-codegen/typescript": "^4.0.9",
"@graphql-codegen/typescript-operations": "^4.2.3",
"@graphql-codegen/typescript-react-apollo": "^4.3.0",
"@types/bcryptjs": "^2.4.6",
"@types/jsonwebtoken": "^9.0.6",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"eslint": "^8",
"eslint-config-next": "14.2.7",
"graphql-tag": "^2.12.6",
"next-plugin-graphql": "^0.0.2",
"postcss": "^8",
"prisma": "^5.19.0",
"tailwindcss": "^3.4.1",
"typescript": "^5"
}
}