-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
118 lines (118 loc) · 3.13 KB
/
package.json
File metadata and controls
118 lines (118 loc) · 3.13 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
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "react-cra-ts-testing-practice",
"version": "0.1.1",
"private": true,
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --coverage -w =100",
"eject": "react-scripts eject",
"lint:l": "eslint src/ --cache -f table",
"lint:f": "eslint src/ --fix",
"prettier:c": "prettier src/ --check",
"prepare": "husky install",
"test:c": "react-scripts test --coverage --watchAll=false --ci --passWithNoTests",
"test:cw": "react-scripts test --coverage --watchAll",
"test:r": "open ./coverage/lcov-report/index.html",
"test:tb": "jest-coverage-thresholds-bumper"
},
"dependencies": {
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^11.2.7",
"@testing-library/user-event": "^12.8.3",
"@types/jest": "^26.0.23",
"@types/node": "^12.20.15",
"@types/react": "^17.0.11",
"@types/react-dom": "^17.0.7",
"@types/react-router-dom": "^5.1.7",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router-dom": "^5.2.0",
"react-scripts": "4.0.3",
"typescript": "^4.3.2",
"web-vitals": "^1.1.2"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.27.0",
"@typescript-eslint/parser": "^4.27.0",
"eslint": "^7.28.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-react": "^7.24.0",
"husky": "^6.0.0",
"jest-coverage-thresholds-bumper": "^1.0.0",
"lint-staged": "^11.0.0",
"prettier": "^2.3.1"
},
"engines": {
"node": "~14.17.0",
"npm": "^6.14.13"
},
"author": {
"name": "Israel Antonio Rosales Laguan",
"email": "israellaguan@gmail.com",
"gitHub": "https://github.com/Israel-Laguan",
"linkedIn": "https://www.linkedin.com/in/israellaguan/",
"hireable": true
},
"jest": {
"coverageReporters": [
"json",
"json-summary",
"lcov",
"clover",
"text",
"text-summary"
],
"coverageThreshold": {
"global": {
"statements": 9.09,
"branches": 0,
"functions": 33.33,
"lines": 9.09
}
},
"collectCoverageFrom": [
"!**/node_modules/**",
"!src/service/**",
"!src/index.tsx",
"!**/pages/__snapshots__/**"
]
},
"prettier": {
"semi": false,
"singleQuote": true
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --cache --fix",
"npm run test:c",
"npm run test:tb",
"git add package.json"
],
"*.{js,jsx,ts,tsx,css,md}": "prettier --write"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Israel-Laguan/react-cra-ts-testing-practice.git"
},
"bugs": {
"url": "https://github.com/Israel-Laguan/react-cra-ts-testing-practice/issues"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"license": "ISC"
}