-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 1.94 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
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "web-cse440-24wi",
"version": "0.1.0",
"private": true,
"scripts": {
"clean": "node scripts/clean.ts",
"dev": "next dev",
"export": "next build && next-image-export-optimizer",
"format": "prettier . --write",
"format:check": "prettier . --check",
"lint": "next lint",
"serve": "http-server dist"
},
"dependencies": {
"@emotion/cache": "11.13.x",
"@emotion/react": "11.13.x",
"@emotion/server": "11.11.x",
"@emotion/styled": "11.13.x",
"@mdx-js/react": "3.0.x",
"@mui/icons-material": "5.16.x",
"@mui/material": "5.16.x",
"@mui/material-nextjs": "6.1.x",
"@next/mdx": "14.2.x",
"date-fns": "3.6.x",
"date-fns-tz": "3.1.x",
"mobx": "6.13.x",
"mobx-react": "9.1.x",
"next": "14.2.x",
"react": "18.3.x",
"react-dom": "18.3.x",
"rehype-slug": "6.0.x",
"server-only": "0.0.1"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "4.3.x",
"@mdx-js/loader": "3.0.x",
"@types/node": "20.x",
"@types/react": "18.3.x",
"@types/react-dom": "18.3.x",
"eslint": "8.x",
"eslint-config-next": "14.2.x",
"eslint-config-prettier": "9.1.x",
"http-server": "14.1.x",
"next-image-export-optimizer": "1.15.0",
"prettier": "3.3.x",
"prettier-plugin-packagejson": "2.5.x",
"rimraf": "6.0.x",
"sharp": "0.33.5",
"typescript": "5.5.x",
"webpack": "5.93.x"
},
"@comment scripts": [
"clean - Clean caches and temporary files.",
"dev - Dynamically serve for development with hot updating.",
"export - Export a full build to 'dist'.",
"format - Apply code formatting.",
"format:check - Preview code formatting.",
"lint - Apply linting.",
"serve - Serve a build from 'dist'."
],
"supportedArchitectures": {
"os": [
"darwin",
"linux",
"win32"
],
"cpu": [
"x64",
"ia32",
"arm64"
],
"libc": [
"glibc",
"musl"
]
}
}