-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.08 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.08 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
{
"name": "swr-test",
"version": "1.0.0",
"description": "Stale Cache NextJs Test",
"main": "index.js",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/PabloMarch/swr-test.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/PabloMarch/swr-test/issues"
},
"homepage": "https://github.com/PabloMarch/swr-test#readme",
"dependencies": {
"axios": "^0.20.0",
"next": "^9.5.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"swr": "^0.3.1"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint": "^7.6.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.5",
"eslint-plugin-react-hooks": "^4.0.8",
"prettier": "^2.0.5"
}
}