-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.17 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
{
"name": "placar",
"version": "1.9",
"private": true,
"author": {
"name": "Miguel Rocha",
"email": "[email protected]",
"url": "https://miguelrocha.dev/"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"codegen": "graphql-codegen --require dotenv/config"
},
"dependencies": {
"@apollo/client": "^3.7.0",
"@radix-ui/colors": "^0.1.8",
"@radix-ui/react-tooltip": "^1.0.2",
"@stitches/react": "^1.2.8",
"date-fns": "^2.29.3",
"dotenv": "^16.0.3",
"graphql": "^16.6.0",
"next": "^13.0.2",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-icons": "^4.7.1"
},
"devDependencies": {
"@graphql-codegen/cli": "^2.13.7",
"@graphql-codegen/introspection": "^2.2.1",
"@graphql-codegen/typescript": "^2.7.5",
"@graphql-codegen/typescript-operations": "^2.5.5",
"@graphql-codegen/typescript-react-apollo": "^3.3.5",
"@types/date-fns": "^2.6.0",
"@types/node": "18.11.3",
"@types/react": "18.0.21",
"@types/react-dom": "18.0.6",
"eslint": "8.26.0",
"eslint-config-next": "12.3.1",
"typescript": "4.8.4"
}
}