-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
60 lines (60 loc) · 1.69 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
{
"name": "maeil_mail",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"dev:hosting": "next dev -H 0.0.0.0",
"build": "next build",
"start": "next start",
"lint": "next lint",
"mock": "npx tsx watch ./src/_mocks/http.ts"
},
"dependencies": {
"@codemirror/lang-markdown": "^6.2.3",
"@codemirror/language-data": "^6.3.1",
"@mdxeditor/editor": "^3.14.0",
"@next/third-parties": "^15.0.1",
"@sentry/nextjs": "^8.35.0",
"@tanstack/react-query": "^5.56.2",
"@uiw/codemirror-extensions-classname": "^4.21.21",
"@uiw/codemirror-themes": "^4.21.21",
"@uiw/react-codemirror": "^4.23.5",
"@uiw/react-markdown-preview": "^5.0.6",
"@vanilla-extract/css": "^1.15.5",
"classnames": "^2.5.1",
"framer-motion-ticker": "^1.0.19",
"next": "^15.0.1",
"react": "^18",
"react-dom": "^18",
"react-markdown": "^9.0.1",
"react-syntax-highlighter": "^15.5.0"
},
"devDependencies": {
"@mswjs/http-middleware": "^0.10.1",
"@svgr/webpack": "^8.1.0",
"@tanstack/eslint-plugin-query": "^5.57.1",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"@vanilla-extract/next-plugin": "^2.4.5",
"cors": "^2.8.5",
"eslint": "^8",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-next": "14.2.13",
"express": "^4.21.0",
"msw": "^2.4.9",
"prettier": "^3.3.3",
"typescript": "^5"
},
"msw": {
"workerDirectory": [
"public"
]
}
}