-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.27 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.27 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
{
"name": "graphql-weather-app",
"author": "Ragini Pandey",
"description": "A Next.js weather dashboard powered by GraphQL, Apollo Client, Tremor charts and TailwindCSS",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"repository": {
"type": "git",
"url": "https://github.com/ragini-pandey/graphql-weather-app.git"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=9.0.0"
},
"keywords": [
"nextjs",
"graphql",
"apollo-client",
"tremor",
"tailwindcss",
"react",
"weather",
"dashboard"
],
"dependencies": {
"@apollo/client": "^3.7.12",
"@heroicons/react": "^1.0.6",
"@tremor/react": "^2.2.0",
"country-state-city": "^3.1.2",
"graphql": "^16.6.0",
"heroicons": "^2.0.17",
"next": "13.3.1",
"openai": "^3.2.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-select": "^5.7.2"
},
"devDependencies": {
"@types/node": "18.16.0",
"@types/react": "18.0.38",
"@types/react-dom": "18.0.11",
"autoprefixer": "10.4.14",
"eslint": "8.39.0",
"eslint-config-next": "13.3.1",
"postcss": "8.4.23",
"tailwindcss": "3.3.1",
"typescript": "5.0.4"
}
}