-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
48 lines (48 loc) · 1.36 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
{
"private": true,
"scripts": {
"dev": "npm run fill-db && next dev",
"build": "npm run fill-db && next build",
"start": "next start",
"xml-to-json": "NODE_OPTIONS=--max_old_space_size=4096 ts-node --transpile-only --script-mode ./src/data/xml-to-json.ts",
"fill-db": "ts-node --transpile-only --script-mode ./src/data/fill-db.ts",
"lint": "prettier --write --check . && next lint",
"prepare": "husky"
},
"browserslist": [
"defaults",
"not IE 11",
"not IE_Mob 11"
],
"prettier": {
"printWidth": 120
},
"dependencies": {
"@emotion/cache": "^11.14.0",
"@emotion/react": "^11.14.0",
"@emotion/server": "^11.11.0",
"@emotion/styled": "^11.14.0",
"@mui/icons-material": "^6.3.0",
"@mui/material": "^6.3.1",
"@mui/material-nextjs": "^6.3.1",
"fast-xml-parser": "^4.5.1",
"next": "15.1.3",
"next-translate": "^2.6.2",
"react": "19.0.0",
"react-dom": "19.0.0"
},
"devDependencies": {
"@types/node": "^22.10.7",
"@types/react": "19.0.7",
"@typescript-eslint/eslint-plugin": "^8.19.1",
"@typescript-eslint/parser": "^8.19.1",
"eslint": "8.57.1",
"eslint-config-next": "15.1.3",
"eslint-config-prettier": "^9.1.0",
"husky": "^9.1.7",
"next-translate-plugin": "^2.6.2",
"prettier": "^3.4.2",
"ts-node": "10.9.2",
"typescript": "^5.7.3"
}
}