-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
101 lines (101 loc) · 2.86 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
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
{
"name": "@oer-search-index/frontend",
"version": "0.8.0-SNAPSHOT",
"private": true,
"jest": {
"coveragePathIgnorePatterns": [
"src/index.js",
"src/serviceWorker.js",
"src/i18n.js",
"src/config/prod.js,"
],
"testMatch": [
"*/__tests__/**/*.test.[jt]s?(x)",
"**/?(*.)+(spec|test).[jt]s?(x)"
],
"watchPathIgnorePatterns": [
""
]
},
"dependencies": {
"@appbaseio/reactivesearch": "^3.45.0",
"@emotion/react": "^11.13.5",
"@emotion/styled": "^11.13.5",
"@mui/icons-material": "^6.1.10",
"@mui/material": "^6.1.10",
"html-react-parser": "^5.2.0",
"i18next": "^23.16.8",
"i18next-browser-languagedetector": "^8.0.1",
"i18next-chained-backend": "^4.6.2",
"i18next-http-backend": "^2.7.1",
"i18next-localstorage-backend": "^4.2.0",
"json-keys-sort": "^2.0.0",
"react": "^18.3.1",
"react-cookie": "^7.1.0",
"react-dom": "^18.3.1",
"react-helmet": "^6.1.0",
"react-i18next": "^15.1.3",
"react-lazyload": "^3.2.1",
"react-router": "^7.0.2",
"react-scripts": "^5.0.1",
"react-window": "^1.8.10"
},
"overrides": {
"react-lazyload": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
}
},
"scripts": {
"test:debug": "react-scripts --inspect-brk test --runInBand --no-cache",
"test:coverage": " npm test -- --coverage --watchAll=false",
"start": "react-scripts start",
"build": "react-scripts build",
"build:dev": "env-cmd -f .env.development react-scripts build",
"build:prod": "env-cmd -f .env.production react-scripts build",
"test": "react-scripts test -u",
"eject": "react-scripts eject",
"lint": "eslint src/**/*.js",
"lint:fix": "eslint --fix src/**/*.js",
"format": "prettier --write src/\"**/*.+(js|jsx|json|yml|yaml|css|md)\""
},
"eslintConfig": {
"extends": "react-app"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint:fix;npm run format;",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-push": "npm test -- --watchAll=false"
}
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@babel/runtime": "^7.26.0",
"@commitlint/cli": "^19.6.0",
"@commitlint/config-conventional": "^19.6.0",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.1.0",
"@testing-library/user-event": "^14.5.2",
"env-cmd": "^10.1.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"fetch-mock": "^12.2.0",
"font-awesome": "^4.7.0",
"husky": "^9.1.7",
"prettier": "^3.4.2"
}
}