-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
61 lines (61 loc) · 1.87 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
{
"name": "istex-search",
"version": "6.3.1",
"description": "Web application dedicated to Istex browsing and sub-corpus extraction",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev",
"build": "./scripts/build-for-prod.sh",
"start": "./scripts/start-prod-server.sh",
"format:check": "npx prettier --check .",
"lint": "npx eslint . --report-unused-disable-directives --max-warnings 0",
"test": "jest",
"test:watch": "jest --watch",
"test:ci": "jest --ci --reporters=default --reporters=jest-junit"
},
"dependencies": {
"@emotion/cache": "11.13.5",
"@emotion/react": "11.13.5",
"@emotion/styled": "11.13.5",
"@mui/icons-material": "6.2.0",
"@mui/material": "6.2.0",
"@mui/material-nextjs": "6.2.0",
"@tanstack/react-query": "5.62.7",
"js-md5": "0.8.3",
"next": "15.1.0",
"next-intl": "3.26.1",
"react": "19.0.0",
"react-dom": "19.0.0",
"react-number-format": "5.4.2",
"react-window": "1.8.10",
"vanilla-cookieconsent": "3.0.1"
},
"devDependencies": {
"@svgr/webpack": "^8.1.0",
"@testing-library/jest-dom": "^6.3.0",
"@testing-library/react": "^16.0.0",
"@testing-library/user-event": "^14.5.2",
"@total-typescript/ts-reset": "^0.6.0",
"@trivago/prettier-plugin-sort-imports": "^5.2.0",
"@types/jest": "^29.5.11",
"@types/node": "^22.0.0",
"@types/react": "^19.0.1",
"@types/react-dom": "^19.0.2",
"@types/react-window": "^1.8.8",
"eslint": "^9.9.0",
"eslint-config-next": "15.0.4",
"eslint-plugin-react-compiler": "^19.0.0-beta-63b359f-20241101",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-junit": "^16.0.0",
"neostandard": "^0.11.2",
"prettier": "3.4.2",
"typescript": "^5.4.5",
"typescript-eslint": "^8.1.0"
},
"overrides": {
"react": "19.0.0",
"react-dom": "19.0.0"
}
}