-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
63 lines (63 loc) · 1.92 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
{
"name": "github-user-finder",
"version": "1.0.0",
"description": "An app for searching and sorting Github users",
"main": "src/App.js",
"scripts": {
"test": "jest --silent",
"test:watch": "jest --silent --watch",
"test:update": "jest --silent -u",
"test:coverage": "jest --silent --coverage",
"format": "prettier --write \"src/**/*.{js,jsx}\"",
"lint": "eslint \"src/**/*.{js,jsx}\" --quiet",
"dev": "parcel src/index.html",
"build": "parcel build src/index.html --public-url /github-user-finder",
"predeploy": "yarn build",
"deploy": "gh-pages -d dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zurda/github-user-finder.git"
},
"author": "Michal Weizman <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/zurda/github-user-finder/issues"
},
"homepage": "https://zurda.github.io/github-user-finder/",
"devDependencies": {
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.6",
"babel-jest": "^23.6.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"eslint": "^5.3.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-jest": "^21.22.1",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.10.0",
"jest": "^23.6.0",
"jest-dom": "^2.1.1",
"parcel-bundler": ">=1.10.0",
"prettier": "^1.14.2",
"react-test-renderer": "^16.7.0",
"react-testing-library": "^5.3.0"
},
"dependencies": {
"@reach/router": "^1.2.1",
"axios": "^0.21.1",
"gh-pages": "^2.0.0",
"github-username-regex": "^1.0.0",
"react": "^16.5.2",
"react-dom": "^16.5.2",
"react-icons": "^3.2.2",
"simple-icons": "^1.9.17"
},
"jest": {
"coverageDirectory": "./coverage/",
"collectCoverage": true
}
}