-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.69 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.69 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
{
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"export": "echo \"no action in script. Please run pnpm build (includes next export)\"",
"start": "next start",
"clean": "rimraf build",
"lint": "eslint './src/**/*.{ts,tsx,js,jsx}'",
"lint-fix": "eslint --fix './src/**/*.{ts,tsx,js,jsx}'",
"all": "pnpm install && pnpm lint && pnpm build"
},
"dependencies": {
"@emotion/cache": "^11.14.0",
"@emotion/react": "^11.14.0",
"@emotion/server": "^11.11.0",
"@emotion/styled": "^11.14.1",
"@mdx-js/loader": "^3.1.1",
"@mdx-js/react": "^3.1.1",
"@mui/icons-material": "^7.3.9",
"@mui/material": "^7.3.9",
"@mui/system": "^7.3.9",
"@next/mdx": "^16.1.6",
"next": "^16.1.6",
"next-auth": "^4.24.13",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"web-vitals": "^5.1.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.5",
"@eslint/js": "^10.0.1",
"@next/eslint-plugin-next": "^16.1.6",
"@stylistic/eslint-plugin": "^5.10.0",
"@types/mdx": "^2.0.13",
"@types/node": "^25.4.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"eslint": "^10.0.3",
"eslint-config-next": "16.1.6",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"jiti": "^2.6.1",
"pnpm": "^10.32.1",
"rimraf": "^6.1.3",
"typescript": "^5.9.3",
"typescript-eslint": "^8.57.0"
},
"packageManager": "pnpm@10.32.0"
}