-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 1.83 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
{
"name": "world-covid-19-data-nextjs",
"version": "0.1.0",
"private": false,
"description": "The client application's role is to contain the UI and display it to the user. World-covid-19-data-nextjs is an application to display data of cases, deaths, and recovers for each country and are known in the world, from the 8 different APIs.",
"repository": {
"type": "git",
"url": "git://github.com/orassayag/world-covid-19-data-nextjs.git"
},
"keywords": [
"react",
"redux",
"thunk",
"covid",
"covid19",
"covid-19",
"covid-world",
"world-covid-19-data",
"covid statistics",
"data",
"statistics",
"cases",
"deaths",
"recovers"
],
"license": "MIT",
"author": "Or Assayag <[email protected]>",
"contributors": [
{
"name": "Or Assayag",
"email": "[email protected]",
"url": "https://github.com/orassayag"
}
],
"main": "src/pages/_app.js",
"files": [
".next",
".vscode",
"public",
"src",
"eslintrc.json",
".gitignore",
"INSTRUCTIONS.md",
"jsconfig.json",
"next.config.js",
"package-lock.json",
"package.json",
"README.md"
],
"scripts": {
"dev": "npm run open-browser && next dev",
"open-browser": "start http://localhost:3000",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"devDependencies": {
"@babel/eslint-parser": "^7.21.8",
"eslint": "8.43.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-next": "13.4.7",
"eslint-plugin-security": "^1.7.1",
"eslint-plugin-no-inline-styles": "^1.0.5"
},
"dependencies": {
"@reduxjs/toolkit": "^1.9.5",
"axios": "^1.4.0",
"next": "13.4.7",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-redux": "^8.0.7",
"react-router-dom": "^6.11.2",
"sass": "^1.62.1"
}
}