-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.6 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.6 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
{
"name": "fetch-url",
"version": "0.1.0",
"private": true,
"engines": {
"node": ">=24"
},
"scripts": {
"dev": "next dev --turbo",
"build": "next build",
"start": "next start",
"format": "prettier --write .",
"type-check": "tsc --noEmit -p tsconfig.json && tsc --noEmit -p tsconfig.node.json",
"lint": "eslint",
"test": "vitest run",
"test:watch": "vitest",
"knip": "knip"
},
"dependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@j0hanz/fetch-url-mcp": "^1.13",
"@modelcontextprotocol/sdk": "^1.29",
"@mui/icons-material": "^7.3.9",
"@mui/material": "^7.3.9",
"@mui/material-nextjs": "^7.3.9",
"next": "16.2.2",
"react": "19.2.4",
"react-dom": "19.2.4",
"react-markdown": "^10.1.0",
"remark-gfm": "^4.0.1"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@next/eslint-plugin-next": "16.2.2",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@trivago/prettier-plugin-sort-imports": "^6.0.2",
"@types/node": "^24",
"@types/react": "^19",
"@types/react-dom": "^19",
"@vitejs/plugin-react": "^6.0.1",
"babel-plugin-react-compiler": "1.0.0",
"eslint": "^10.2.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-de-morgan": "^2.1.1",
"eslint-plugin-depend": "^1.5.0",
"eslint-plugin-unused-imports": "^4.4.1",
"jsdom": "^29.0.2",
"knip": "^6.3.0",
"prettier": "^3.8.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.58.0",
"vitest": "^4.1.3"
}
}