-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.93 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 2.93 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"private": true,
"name": "pyconit",
"version": "1.0.0",
"main": "index.js",
"author": "Python Italia",
"license": "MIT",
"scripts": {
"dev": "concurrently \"npm run codegen:watch\" \"next dev --turbopack\"",
"build": "npm run codegen && next build",
"start": "next start",
"codegen": "graphql-codegen -r dotenv/config -c codegen.yml",
"codegen:watch": "pnpm run codegen --watch",
"test": "jest src/"
},
"dependencies": {
"@apollo/client": "^3.12.3",
"@graphql-codegen/add": "^5.0.3",
"@graphql-codegen/cli": "^2.11.3",
"@graphql-codegen/fragment-matcher": "^3.3.0",
"@graphql-codegen/introspection": "^4.0.3",
"@graphql-codegen/near-operation-file-preset": "^3.0.0",
"@graphql-codegen/typescript": "^2.7.2",
"@graphql-codegen/typescript-operations": "^2.5.2",
"@graphql-codegen/typescript-react-apollo": "^4.3.2",
"@neshca/cache-handler": "^1.9.0",
"@python-italia/pycon-styleguide": "0.1.210",
"@sentry/nextjs": "^9.42.0",
"@vercel/analytics": "^1.1.1",
"@vercel/og": "^0.6.5",
"@vercel/speed-insights": "^1.0.12",
"@xstate/react": "^3.0.1",
"clsx": "^1.2.1",
"concurrently": "^9.1.0",
"date-fns": "^4.1.0",
"date-fns-tz": "^3.2.0",
"deepmerge": "^4.3.1",
"dotenv": "^16.4.7",
"eslint-config-next": "15.1.0",
"framer-motion": "^11.5.5",
"graphql": "^16.9.0",
"graphql-tag": "^2.12.6",
"marksy": "^8.0.0",
"moment": "^2.29.1",
"next": "15.2.4",
"next-cookies": "^2.0.3",
"pdfkit": "^0.15.1",
"react": "19.0.0",
"react-dnd": "^11.1.3",
"react-dnd-html5-backend": "^11.1.3",
"react-dom": "19.0.0",
"react-hook-form": "^7.62.0",
"react-intl": "^6.6.6",
"react-intl-formatted-duration": "^4.0.0",
"react-qr-code": "^2.0.15",
"react-select": "^5.9.0",
"react-use-form-state": "^0.13.2",
"react-use-sync-scroll": "^0.1.0",
"react-wrap-balancer": "^1.1.1",
"redis": "^4.7.0",
"styled-system": "^5.1.5",
"svg-to-pdfkit": "^0.1.8",
"xstate": "^4.38.3",
"yup": "^0.29.3"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@python-italia/eslint-config": "^1.0.13",
"@tailwindcss/typography": "^0.5.9",
"@testing-library/dom": "^8.1.0",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^14.2.1",
"@testing-library/user-event": "^13.2.1",
"@trivago/prettier-plugin-sort-imports": "^4.0.0",
"@types/jest": "^29.5.12",
"@types/node": "^14.14.6",
"@types/react": "19.0.1",
"@types/react-dom": "19.0.2",
"@types/testing-library__jest-dom": "^5.14.1",
"@xstate/inspect": "^0.8.0",
"autoprefixer": "^10.4.20",
"jest": "^29.7.0",
"postcss": "^8.4.35",
"tailwindcss": "^3.3.5",
"tailwindcss-blend-mode": "^1.0.0",
"ts-jest": "^27.0.4",
"typescript": "^5.5.4"
},
"pnpm": {
"overrides": {
"@types/react": "19.0.1",
"@types/react-dom": "19.0.2"
}
}
}