-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.18 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.18 KB
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
66
67
68
69
70
71
72
73
74
{
"name": "gone",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"gql-gen": "graphql-codegen --config codegen.yml",
"test": "jest --watch",
"test-commit": "jest",
"post-install": "husky install",
"vercel-build": "npx prisma generate && npx prisma migrate deploy && next build"
},
"dependencies": {
"@apollo/client": "^3.6.9",
"@graphql-codegen/cli": "^2.6.2",
"@graphql-codegen/typescript": "^2.5.1",
"@graphql-codegen/typescript-operations": "^2.4.2",
"@graphql-codegen/typescript-react-apollo": "^3.2.16",
"@next-auth/prisma-adapter": "^1.0.3",
"@prisma/client": "^3.15.2",
"@supabase/supabase-js": "^1.35.4",
"@tanstack/react-table": "^8.1.4",
"@types/micro-cors": "^0.1.2",
"@types/react-color": "^3.0.6",
"@types/react-datepicker": "^4.4.2",
"@visx/axis": "2.18.0",
"@visx/curve": "3.0.0",
"@visx/grid": "2.18.0",
"@visx/group": "3.0.0",
"@visx/responsive": "2.17.0",
"@visx/scale": "2.2.2",
"@visx/shape": "3.0.0",
"@visx/tooltip": "3.0.0",
"apollo-server-micro": "^3.9.0",
"graphql": "^16.5.0",
"husky": "^8.0.1",
"micro": "^9.3.4",
"micro-cors": "^0.1.1",
"next": "12.1.6",
"next-auth": "^4.5.0",
"next-themes": "^0.2.0",
"nexus": "^1.3.0",
"nexus-prisma": "^0.35.0",
"prisma": "^3.15.2",
"react": "18.2.0",
"react-color": "^2.19.3",
"react-datepicker": "^4.8.0",
"react-dom": "18.2.0",
"react-hook-form": "^7.33.1",
"react-tooltip": "4.5.1",
"react-use-draggable-scroll": "^0.4.4",
"recharts": "2.1.12"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.3.0",
"@testing-library/user-event": "^14.2.1",
"@types/node": "18.0.0",
"@types/react": "18.0.14",
"@types/react-dom": "18.0.5",
"autoprefixer": "^10.4.7",
"eslint": "8.17.0",
"eslint-config-next": "12.1.6",
"jest": "^28.1.1",
"jest-canvas-mock": "^2.4.0",
"jest-environment-jsdom": "^28.1.1",
"postcss": "^8.4.14",
"tailwindcss": "^3.1.3",
"typescript": "4.7.3"
}
}