-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
64 lines (64 loc) · 2.14 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
{
"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.1",
"@emotion/react": "11.13.3",
"@emotion/styled": "11.13.0",
"@mui/icons-material": "6.1.7",
"@mui/material": "6.1.7",
"@mui/material-nextjs": "^6.0.0",
"@tanstack/react-query": "^5.28.4",
"js-md5": "0.8.3",
"next": "15.0.3",
"next-intl": "3.25.1",
"react": "19.0.0-rc-fb9a90fa48-20240614",
"react-dom": "19.0.0-rc-fb9a90fa48-20240614",
"react-number-format": "^5.4.0",
"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": "^4.3.0",
"@types/jest": "^29.5.11",
"@types/node": "^22.0.0",
"@types/react": "npm:[email protected]",
"@types/react-dom": "npm:[email protected]",
"@types/react-window": "^1.8.8",
"cross-fetch": "^4.0.0",
"eslint": "^9.9.0",
"eslint-config-next": "15.0.3",
"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.3.3",
"typescript": "^5.4.5",
"typescript-eslint": "^8.1.0"
},
"overrides": {
"react": "19.0.0-rc-fb9a90fa48-20240614",
"react-dom": "19.0.0-rc-fb9a90fa48-20240614",
"@types/react": "npm:[email protected]",
"@types/react-dom": "npm:[email protected]"
}
}