-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 2.75 KB
/
Copy pathpackage.json
File metadata and controls
105 lines (105 loc) · 2.75 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "react-netflix-ts",
"version": "0.1.0",
"private": false,
"keywords": [
"react ts",
"react typescript",
"react firebase",
"react netflix",
"react auth"
],
"author": "Kirill Bukovski",
"repository": {
"type": "git",
"url": "git+https://github.com/Bukovski/react-netflix-ts.git"
},
"homepage": "https://bukovski.github.io/react-netflix-ts/",
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"test:snapshot": "npm test -m",
"test:coverage": "CI=true npm test -- --env=jsdom --coverage",
"test:coveralls": "CI=true npm test -- --env=jsdom --coverage && coveralls < coverage/lcov.info",
"eject": "react-scripts eject",
"predeploy": "npm run build",
"deploy": "gh-pages -d build"
},
"dependencies": {
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^11.2.7",
"@testing-library/user-event": "^12.8.3",
"@types/firebase": "^3.2.1",
"@types/jest": "^26.0.24",
"@types/node": "^12.20.36",
"@types/react": "^17.0.33",
"@types/react-dom": "^17.0.10",
"@types/react-router-dom": "^5.3.2",
"@types/styled-components": "^5.1.15",
"firebase": "^7.19.1",
"fuse.js": "^6.4.6",
"normalize.css": "^8.0.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router-dom": "^5.3.0",
"react-scripts": "4.0.3",
"styled-components": "^5.3.3",
"typescript": "^4.4.4",
"web-vitals": "^1.1.2"
},
"devDependencies": {
"coveralls": "^3.1.1",
"gh-pages": "^3.2.3"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"jest": {
"collectCoverageFrom": [
"<rootDir>/src/**/*.{js,jsx,ts,tsx}",
"!<rootDir>/node_modules/",
"!<rootDir>/src/app.tsx",
"!<rootDir>/src/global-styles.ts",
"!<rootDir>/src/helpers/routes.helper.tsx",
"!<rootDir>/src/lib/firebase.prod.ts",
"!<rootDir>/src/lib/seed.ts",
"!<rootDir>/src/index.tsx",
"!<rootDir>/src/utils/index.ts",
"!<rootDir>/src/pages/index.ts",
"!<rootDir>/src/components/index.ts",
"!<rootDir>/src/containers/index.ts",
"!<rootDir>/src/hooks/*.{ts,tsx}",
"!<rootDir>/src/context/*.{ts,tsx}",
"!<rootDir>/src/types/*.{ts,tsx}"
],
"coverageThreshold": {
"global": {
"branches": 90,
"functions": 90,
"lines": 90,
"statements": 90
}
},
"coverageReporters": [
"html",
"text",
"lcov"
]
}
}