-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.03 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 2.03 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
{
"name": "compass-frontend",
"version": "0.1.0",
"private": true,
"dependencies": {
"bootstrap": "^5.3.3",
"date-fns": "^4.1.0",
"dotenv": "^16.4.5",
"i18next": "^23.7.16",
"markdown-to-jsx": "^7.5.0",
"postcss": "^8.4.41",
"prop-types": "^15.8.1",
"react": "^18.3.1",
"react-bootstrap": "^2.10.4",
"react-datepicker": "^7.6.0",
"react-dom": "^18.3.1",
"react-i18next": "^15.0.1",
"react-redux": "^9.1.2",
"react-router-dom": "^6.26.1",
"react-scripts": "5.0.1",
"recharts": "^2.12.7",
"redux": "^5.0.1",
"redux-thunk": "^3.1.0",
"web-vitals": "^2.1.4"
},
"scripts": {
"start": "cross-env react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"coverage": "npm test -- --coverage",
"eject": "react-scripts eject",
"prepare": "node src/scripts/prepare.js"
},
"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"
]
},
"simple-git-hooks": {
"pre-commit": "npx pretty-quick --staged"
},
"jest": {
"transformIgnorePatterns": [
"node_modules/(?!(date-fns|react-datepicker|bootstrap)/)"
]
},
"devDependencies": {
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.2.0",
"@testing-library/user-event": "^14.6.1",
"@types/jest": "^29.5.14",
"cross-env": "^7.0.3",
"jest": "^29.7.0",
"jest-axe": "^9.0.0",
"prettier": "^3.3.3",
"pretty-quick": "^4.0.0",
"simple-git-hooks": "^2.11.1"
}
}