-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.94 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
{
"name": "justice-counts-components",
"version": "1.0.0",
"description": "A set of React components powering a web app for exploring centralized, standardized metrics on the performance of justice systems across the United States",
"repository": "[email protected]/Recidiviz/justice-counts-components.git",
"author": "Recidiviz <[email protected]>",
"license": "SEE LICENSE IN <LICENSE>",
"dependencies": {
"@craco/craco": "^6.1.1",
"@react-hook/window-size": "^3.0.7",
"chart.js": "^2.9.4",
"classnames": "^2.2.6",
"is-empty-obj": "^1.0.12",
"merge": "^2.1.0",
"prop-types": "^15.7.2",
"react": "^17.0.1",
"react-app-polyfill": "^2.0.0",
"react-chartjs-2": "^2.11.1",
"react-dom": "^17.0.1",
"react-scripts": "^4.0.1",
"use-onclickoutside": "^0.3.1"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.11.6",
"@testing-library/react": "^11.2.2",
"@testing-library/user-event": "^12.6.0",
"coveralls": "^3.1.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.3.0",
"jsonlines-loader": "^1.1.1",
"lint-staged": "^10.5.2",
"prettier": "^2.2.1",
"sass": "^1.29.0"
},
"scripts": {
"start": "craco start",
"build": "craco build",
"test": "craco test",
"lint": "eslint ./src"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "yarn test --watchAll=false"
}
},
"lint-staged": {
"*.js": "eslint --fix"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
"last 1 chrome version",
"last 1 edge version",
"last 1 firefox version",
"last 1 safari version",
"ie 11",
"last 1 and_chr version",
"last 1 ios_saf version"
],
"jest": {
"collectCoverageFrom": [
"src/**/*.js"
],
"moduleNameMapper": {
"\\.(scss)$": "<rootDir>/__mocks__/styleMock.js"
}
}
}