-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.23 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.23 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "github-api-consumer",
"version": "0.1.0",
"private": true,
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"eject": "react-scripts eject",
"test": "react-scripts test",
"styleguide": "styleguidist server",
"format": "prettier --write \"src/**/*.{ts,tsx,js,jsx,json}\"",
"lint": "npm run lint:js && npm run lint:css",
"lint:js": "eslint \"**/*.{ts,tsx}\" --quiet",
"lint:css": "stylelint \"**/*.{ts,tsx}\""
},
"dependencies": {
"@reach/router": "^1.2.1",
"@types/styled-components": "^4.1.18",
"axios": "^0.19.0",
"react": "^16.8.6",
"react-docgen-typescript": "^1.12.5",
"react-dom": "^16.8.6",
"react-scripts": "3.0.1",
"styled-components": "^4.3.2",
"styled-normalize": "^8.0.6"
},
"devDependencies": {
"@testing-library/jest-dom": "^4.0.0",
"@testing-library/react": "^8.0.8",
"@types/axios": "^0.14.0",
"@types/jest": "24.0.17",
"@types/node": "12.7.0",
"@types/reach__router": "^1.2.4",
"@types/react": "16.8.25",
"@types/react-dom": "16.8.5",
"@typescript-eslint/eslint-plugin": "^1.13.0",
"@typescript-eslint/parser": "^1.13.0",
"eslint-config-prettier": "^6.0.0",
"eslint-config-react-app": "^4.0.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.0",
"husky": "^3.0.2",
"jest-styled-components": "^6.3.3",
"lint-staged": "^9.2.1",
"prettier": "^1.18.2",
"react-styleguidist": "^9.1.14",
"stylelint": "^10.1.0",
"stylelint-config-recommended": "^2.2.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-processor-styled-components": "^1.8.0",
"typescript": "3.5.3",
"typescript-plugin-styled-components": "^1.4.3"
},
"husky": {
"hooks": {
"pre-commit": "npm run format && npm run lint",
"pre-push": "npm run test -- --watchAll=false --bail"
}
},
"lint-staged": {
"*.{js,tsx}": [
"npm run format",
"npm run lint --fix",
"git add"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}