-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.2 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.2 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "markdown-editor",
"version": "0.1.0",
"private": true,
"homepage": "https://cjaewon.github.io/markdown-editor",
"dependencies": {
"@reduxjs/toolkit": "^1.3.6",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.3.2",
"@testing-library/user-event": "^7.1.2",
"@types/codemirror": "^0.0.96",
"@types/jest": "^24.0.0",
"@types/node": "^12.0.0",
"@types/ramda": "^0.27.6",
"@types/react": "^16.9.0",
"@types/react-dom": "^16.9.0",
"@types/react-outside-click-handler": "^1.3.0",
"@types/react-redux": "^7.1.9",
"@types/react-textarea-autosize": "^4.3.5",
"@types/sanitize-html": "^1.23.2",
"@types/styled-components": "^5.1.0",
"@types/throttle-debounce": "^2.1.0",
"codemirror": "^5.54.0",
"date-fns": "^2.14.0",
"gh-pages": "^3.0.0",
"html-react-parser": "^0.13.0",
"prismjs": "^1.20.0",
"ramda": "^0.27.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-helmet-async": "^1.0.6",
"react-icons": "^3.10.0",
"react-outside-click-handler": "^1.3.0",
"react-redux": "^7.2.0",
"react-scripts": "3.4.1",
"react-spring": "^8.0.27",
"react-textarea-autosize": "^8.0.1",
"react-toastify": "^6.0.5",
"rehype-katex": "^3.0.0",
"rehype-raw": "^4.0.2",
"rehype-stringify": "^8.0.0",
"remark": "^12.0.0",
"remark-breaks": "^1.0.5",
"remark-html": "^11.0.2",
"remark-math": "^2.0.1",
"remark-rehype": "^7.0.0",
"remark-slug": "^6.0.0",
"sanitize-html": "^2.3.2",
"strip-markdown": "^3.1.2",
"styled-components": "^5.1.1",
"throttle-debounce": "^2.2.1",
"typesafe-actions": "^5.1.0",
"typescript": "^3.9.5"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"predeploy": "npm run build",
"deploy": "gh-pages -d build -b gh-pages"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}