-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.4 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
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "spooled",
"version": "0.1.0",
"packageManager": "[email protected]",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"reset-db": "prisma db push --force-reset && prisma db seed",
"studio": "prisma studio --browser none",
"graphql-codegen": "graphql-codegen",
"graphql-codegen:watch": "graphql-codegen --watch"
},
"dependencies": {
"@apollo/client": "^3.9.5",
"@apollo/experimental-nextjs-app-support": "^0.8.0",
"@apollo/server": "^4.10.0",
"@as-integrations/next": "^3.0.0",
"@fortawesome/fontawesome-svg-core": "^6.5.1",
"@fortawesome/free-brands-svg-icons": "^6.5.1",
"@fortawesome/pro-light-svg-icons": "^6.5.1",
"@fortawesome/pro-regular-svg-icons": "^6.5.1",
"@fortawesome/pro-solid-svg-icons": "^6.5.1",
"@fortawesome/react-fontawesome": "^0.2.0",
"@graphql-tools/schema": "^10.0.2",
"@graphql-typed-document-node/core": "^3.2.0",
"@paralleldrive/cuid2": "^2.2.2",
"@prisma/client": "^5.10.2",
"@types/qrcode": "^1.5.5",
"clsx": "^2.1.0",
"graphql": "^16.8.1",
"graphql-scalars": "^1.22.4",
"graphql-tag": "^2.12.6",
"immer": "^10.0.3",
"jspdf": "^2.5.1",
"lodash": "^4.17.21",
"next": "14.1.0",
"prisma-extension-cuid2": "^1.0.2",
"qrcode": "^1.5.3",
"react": "^18",
"react-dom": "^18",
"sqids": "^0.3.0",
"timm": "^1.7.1",
"ts-dedent": "^2.2.0"
},
"devDependencies": {
"@graphql-codegen/add": "^5.0.2",
"@graphql-codegen/cli": "^5.0.2",
"@graphql-codegen/client-preset": "^4.2.4",
"@graphql-codegen/schema-ast": "^4.0.2",
"@graphql-codegen/typescript": "^4.0.6",
"@graphql-codegen/typescript-resolvers": "^4.0.6",
"@parcel/watcher": "^2.4.0",
"@tailwindcss/container-queries": "^0.1.1",
"@tailwindcss/typography": "^0.5.10",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/lodash": "^4.14.202",
"@types/node": "^20.11.20",
"@types/react": "^18.2.57",
"@types/react-dom": "^18",
"autoprefixer": "^10.0.1",
"daisyui": "^4.7.2",
"eslint": "^8",
"eslint-config-next": "14.1.0",
"postcss": "^8",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.11",
"prisma": "^5.10.2",
"tailwindcss": "^3.3.0",
"tsx": "^4.7.1",
"typescript": "^5.3.3"
},
"prisma": {
"seed": "tsx prisma/seed.ts"
}
}