-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
119 lines (119 loc) · 3.13 KB
/
package.json
File metadata and controls
119 lines (119 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
119
{
"name": "react-accessibility-tools-integration",
"description": "Integration of available react accessibility tools",
"version": "1.0.0",
"private": true,
"engines": {
"node": "12.x"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pgmanutd/react-accessibility-tools-integration.git"
},
"keywords": [
"react",
"accessibility",
"tools",
"accessibility-tools",
"jest-axe",
"axe",
"axe-core",
"react-axe",
"eslint-plugin-jsx-a11y",
"lighthouse",
"lighthouse-ci",
"lighthouse-audits"
],
"author": "pgmanutd <prashantmanunited@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/pgmanutd/react-accessibility-tools-integration/issues"
},
"scripts": {
"start": "cross-env EXTEND_ESLINT=true react-scripts start",
"lint": "eslint src --ext js,jsx,ts,tsx --cache --cache-location \".cache/.eslintcache/\"",
"format": "yarn lint --fix",
"typecheck": "tsc --noEmit -p ./tsconfig.json",
"test": "react-scripts test --passWithNoTests",
"test:lh-ci": "rm -rf .lighthouseci/ && lhci autorun",
"check": "yarn lint && yarn typecheck && cross-env CI=true yarn test --coverage",
"build": "yarn run check && react-scripts build",
"eject": "react-scripts eject",
"serve": "cd build && http-server"
},
"dependencies": {
"react": "^16.13.1",
"react-dom": "^16.13.1"
},
"devDependencies": {
"@lhci/cli": "^0.5.0",
"@testing-library/jest-dom": "^5.11.3",
"@testing-library/react": "^10.4.9",
"@testing-library/user-event": "^12.1.1",
"@types/jest": "^26.0.10",
"@types/jest-axe": "^3.5.0",
"@types/node": "^14.6.0",
"@types/react": "^16.9.46",
"@types/react-dom": "^16.9.8",
"@typescript-eslint/eslint-plugin": "^3.9.1",
"@typescript-eslint/parser": "^3.9.1",
"cross-env": "^7.0.2",
"eslint": "^6.6.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^4.1.0",
"http-server": "^0.12.3",
"husky": "^4.2.5",
"jest-axe": "^3.5.0",
"lint-staged": "^10.2.11",
"prettier": "^2.0.5",
"puppeteer": "^5.2.1",
"react-axe": "^3.5.3",
"react-scripts": "3.4.3",
"typescript": "~3.9.7"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx}": [
"yarn format"
]
},
"jest": {
"coveragePathIgnorePatterns": [
"node_modules",
"src/index.tsx",
"src/setupProxy.js",
"src/setupTests.ts",
"src/serviceWorker.ts",
"src/utils/testUtils.tsx"
],
"coverageThreshold": {
"global": {
"branches": 70,
"functions": 85,
"lines": 90,
"statements": 90
}
}
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}