-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
40 lines (40 loc) · 1.13 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
{
"name": "better-first-issues-next",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"lint:fix": "eslint . --ext .js,.jsx,.ts,.tsx --fix"
},
"dependencies": {
"@octokit/core": "^3.5.1",
"@octokit/plugin-rest-endpoint-methods": "^5.10.2",
"grommet": "^2.17.5",
"grommet-icons": "^4.6.2",
"next": "11.1.2",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-masonry-css": "^1.0.16",
"sass": "^1.41.0",
"styled-components": "^5.3.1",
"swr": "^1.0.1",
"yaml": "^1.10.2"
},
"devDependencies": {
"@types/react": "17.0.20",
"@typescript-eslint/eslint-plugin": "^4.31.1",
"@typescript-eslint/parser": "^4.31.1",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-airbnb-typescript": "^14.0.0",
"eslint-config-next": "11.1.2",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.25.1",
"eslint-plugin-react-hooks": "^4.2.0",
"typescript": "4.4.3"
}
}