-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.77 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 2.77 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
{
"name": "novatics-cra-template-typescript",
"version": "1.5.0",
"private": true,
"dependencies": {
"axios": "^0.26.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-error-boundary": "^3.1.4",
"react-router-dom": "^5.2.0",
"react-scripts": "5.0.0",
"reset-css": "^5.0.1",
"styled-components": "^5.3.3",
"typescript": "^4.6.2",
"web-vitals": "^2.1.4"
},
"scripts": {
"prepare": "husky install",
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"test:ci": "CI=true react-scripts test",
"test:coverage": "CI=true react-scripts test --coverage --watchAll=false",
"lint": "eslint \"./src/**/*.+(js|jsx|ts|tsx)\"",
"prettier": "prettier \"./src/**/*.+(js|jsx|ts|tsx|json|yml|yaml|md|mdx)\"",
"validate": "yarn lint && npm run prettier -- --check && tsc --skipLibCheck",
"release": "standard-version --skip.tag --no-verify --release-as minor"
},
"config": {
"commitizen": {
"path": "node_modules/cz-customizable"
}
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"jest": {
"coverageReporters": [
"lcov"
],
"coverageThreshold": {
"global": {
"branches": 90,
"functions": 90,
"lines": 90,
"statements": 90
}
},
"collectCoverageFrom": [
"src/**/*.+(js|jsx|ts|tsx)",
"!src/(containers|pages|routes)/**/*",
"!src/index.ts",
"!src/react-app-env.d.ts",
"!src/reportWebVitals.ts",
"!src/setupTests.ts",
"!src/**/*.d.ts"
]
},
"devDependencies": {
"@commitlint/cli": "^16.2.1",
"@commitlint/config-conventional": "^16.2.1",
"@novatics-tools/eslint-config-react-typescript": "^1.5.0",
"@testing-library/jest-dom": "^5.16.2",
"@testing-library/react": "^12.1.4",
"@testing-library/react-hooks": "^7.0.2",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^27.4.1",
"@types/lodash": "^4.14.180",
"@types/node": "^17.0.21",
"@types/react": "^17.0.40",
"@types/react-dom": "^17.0.13",
"@types/react-router-dom": "^5.3.3",
"@types/styled-components": "^5.1.24",
"@typescript-eslint/eslint-plugin": "^5.15.0",
"@typescript-eslint/parser": "^5.15.0",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
"cz-customizable": "^6.3.0",
"eslint": "^7.32.0",
"eslint-config-novatics-ts": "^1.0.1",
"husky": "^7.0.4",
"jest-styled-components": "^7.0.8",
"lint-staged": "^12.3.5",
"prettier": "^2.5.1",
"standard-version": "^9.3.2"
}
}