This repository has been archived by the owner on Dec 27, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 97
/
Copy pathpackage.json
59 lines (59 loc) · 1.52 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
{
"name": "react-github-profile",
"version": "0.2.0",
"private": true,
"dependencies": {
"@emotion/core": "10.0.2",
"@emotion/styled": "10.0.2",
"@reach/router": "1.2.1",
"date-fns": "1.29.0",
"emotion": "10.0.2",
"emotion-theming": "10.0.2",
"graphql-request": "1.8.2",
"match-sorter": "2.3.0",
"netlify-auth-providers": "1.0.0-alpha5",
"prop-types": "15.6.2",
"react": "16.7.0-alpha.2",
"react-cache": "2.0.0-alpha.1",
"react-dom": "16.7.0-alpha.2",
"react-error-boundary": "1.2.3",
"react-loadable": "^5.5.0"
},
"scripts": {
"start": "react-scripts start",
"build": "npm run build:app && npm run build:docs",
"build:app": "react-scripts build",
"build:docs": "docz build --dest build/docz",
"test": "react-scripts test",
"dev": "docz dev --port 3001",
"format": "prettier --write \"**/*.+(js|json|css)\"",
"validate": "cross-env CI=true npm-run-all --parallel test build"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && npm run build -s"
}
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"cross-env": "5.2.0",
"docz": "0.12.9",
"husky": "1.1.3",
"jest-dom": "2.1.1",
"lint-staged": "8.0.4",
"lodash": "4.17.11",
"normalize.css": "8.0.0",
"npm-run-all": "4.1.3",
"prettier": "1.14.3",
"react-scripts": "2.1.1",
"react-testing-library": "5.3.0"
}
}