-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.35 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
{
"name": "markwriter",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prettier": "prettier --write ."
},
"dependencies": {
"@chakra-ui/react": "^2.4.7",
"@codemirror/commands": "^6.1.3",
"@codemirror/highlight": "^0.19.8",
"@codemirror/lang-markdown": "^6.0.5",
"@codemirror/language": "^6.3.2",
"@codemirror/language-data": "^6.1.0",
"@codemirror/state": "^6.2.0",
"@codemirror/theme-one-dark": "^6.1.0",
"@codemirror/view": "^6.7.2",
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@lezer/highlight": "^1.1.3",
"@next/font": "13.1.1",
"@types/node": "18.11.18",
"@types/react": "18.0.26",
"@types/react-dom": "18.0.10",
"eslint": "8.31.0",
"eslint-config-next": "13.1.1",
"framer-motion": "^8.4.2",
"github-markdown-css": "^5.1.0",
"hast-util-sanitize": "^4.1.0",
"marked": "^4.2.5",
"next": "13.1.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-icons": "^4.7.1",
"rehype-parse": "^8.0.4",
"rehype-react": "^7.1.1",
"rehype-sanitize": "^5.0.1",
"typescript": "4.9.4",
"unified": "^10.1.2"
},
"devDependencies": {
"@types/marked": "^4.0.8",
"eslint-config-prettier": "^8.6.0",
"prettier": "2.8.2"
}
}