-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
78 lines (78 loc) · 2.06 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "react-hotspots",
"version": "1.0.0",
"dependencies": {
"@emotion/core": "^10.0.27",
"@mdx-js/react": "^1.5.3",
"@rooks/use-outside-click": "^3.5.0",
"gh-pages": "^2.1.1",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-scripts": "^3.3.0",
"rebass": "^4.0.7",
"styled-components": "^4.4.1",
"styled-icons": "^9.1.0",
"theme-ui": "^0.2.52",
"typescript": "^3.7.4"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"test:coverage": "CI=true npm test -- --coverage",
"eject": "react-scripts eject",
"lint": "./node_modules/.bin/eslint src/**/*.{ts,tsx}",
"predeploy": "npm run build",
"deploy": "gh-pages -d build"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"@testing-library/react": "^9.4.0",
"@testing-library/react-hooks": "^3.2.1",
"@types/jest": "^24.0.24",
"@types/node": "^13.1.0",
"@types/react": "^16.9.17",
"@types/react-dom": "^16.9.4",
"@types/rebass": "^4.0.3",
"@types/styled-components": "^4.4.1",
"@types/testing-library__react": "^9.1.2",
"@types/testing-library__react-hooks": "^3.2.0",
"@types/theme-ui": "^0.2.6",
"@typescript-eslint/eslint-plugin": "^2.13.0",
"@typescript-eslint/parser": "^2.13.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.7.0",
"eslint-config-react": "^1.1.7",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.17.0",
"eslint-plugin-react-hooks": "^2.3.0",
"prettier": "^1.19.1",
"react-test-renderer": "^16.12.0"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint",
"pre-push": "npm run lint"
}
},
"jest": {
"collectCoverageFrom": [
"src/**/*.{js,jsx,ts,tsx}",
"!src/**/*.d.ts",
"!src/shared/types/*.ts",
"!<rootDir>/node_modules/"
],
"coverageReporters": [
"text"
]
},
"license": "MIT"
}