-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
59 lines (59 loc) · 1.62 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
{
"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.x",
"@emotion/react": "11.x",
"@emotion/server": "11.x",
"@emotion/styled": "11.x",
"@mdx-js/react": "2.x",
"@mui/icons-material": "5.x",
"@mui/material": "5.x",
"@next/mdx": "13.x",
"date-fns": "2.x",
"date-fns-tz": "2.x",
"mobx": "6.x",
"mobx-react": "9.x",
"next": "13.x",
"react": "18.x",
"react-dom": "18.x",
"rehype-slug": "5.x",
"server-only": "0.0.1"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "4.x",
"@mdx-js/loader": "2.x",
"@types/node": "20.x",
"@types/react": "18.x",
"@types/react-dom": "18.x",
"eslint": "8.x",
"eslint-config-next": "13.x",
"eslint-config-prettier": "9.x",
"http-server": "14.x",
"next-image-export-optimizer": "1.x",
"prettier": "3.x",
"prettier-plugin-packagejson": "2.x",
"rimraf": "5.x",
"typescript": "5.x",
"webpack": "5.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'."
]
}