forked from ichiklaus/github-user-search-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.23 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
{
"name": "github-user-search",
"version": "1.0.0",
"description": "A Github User Search App using Github Users API",
"source": "public/index.html",
"scripts": {
"start": "parcel serve --open msedge -p 1000",
"build": "parcel build",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ichiklaus/github-user-search-app.git"
},
"keywords": [
"github",
"user",
"search",
"api"
],
"author": "Nicolás Moreira",
"license": "ISC",
"bugs": {
"url": "https://github.com/ichiklaus/github-user-search-app/issues"
},
"homepage": "https://github.com/ichiklaus/github-user-search-app#readme",
"dependencies": {
"axios": "^0.26.1",
"prop-types": "^15.8.1",
"react": "^18.0.0",
"react-dom": "^18.0.0"
},
"devDependencies": {
"autoprefixer": "^10.4.4",
"eslint": "^8.14.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.5.0",
"parcel": "^2.4.1",
"postcss": "^8.4.12",
"process": "^0.11.10",
"tailwindcss": "^3.0.24"
}
}