forked from hedgedoc/react-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
158 lines (158 loc) · 5.37 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
{
"name": "@hedgedoc/react-client",
"version": "0.0.1",
"license": "AGPL-3.0",
"scripts": {
"build": "next build",
"build:netlify": "bash netlify/patch-files.sh && cross-env NEXT_PUBLIC_IGNORE_IFRAME_ORIGIN_CONFIG=true yarn build:mock",
"build:mock": "cross-env NEXT_PUBLIC_USE_MOCK_API=true next build",
"build:test": "cross-env NEXT_PUBLIC_USE_MOCK_API=true NEXT_PUBLIC_TEST_MODE=true next build",
"analyze": "cross-env ANALYZE=true next build",
"dev": "cross-env PORT=3001 next dev",
"dev:test": "cross-env PORT=3001 NEXT_PUBLIC_TEST_MODE=true next dev",
"dev:for-real-backend": "cross-env PORT=3001 NEXT_PUBLIC_USE_MOCK_API=false NEXT_PUBLIC_BACKEND_BASE_URL=http://localhost:3000/ next dev",
"format": "prettier -c \"src/**/*.{ts,tsx,js}\" \"cypress/**/*.{ts,tsx}\"",
"format:fix": "prettier -w \"src/**/*.{ts,tsx,js}\" \"cypress/**/*.{ts,tsx}\"",
"lint": "eslint --max-warnings=0 --ext .ts,.tsx src",
"lint:fix": "eslint --fix --ext .ts,.tsx src",
"start": "cross-env PORT=3001 next start",
"start:ci": "cross-env NEXT_PUBLIC_USE_MOCK_API=true NEXT_PUBLIC_TEST_MODE=true PORT=3001 next start",
"cy:open": "cypress open",
"cy:run:chrome": "cypress run --browser chrome",
"cy:run:firefox": "cypress run --browser firefox",
"test": "jest --watch",
"test:ci": "jest --ci"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"@codemirror/lang-markdown": "0.19.6",
"@codemirror/language-data": "0.19.2",
"@codemirror/theme-one-dark": "0.19.1",
"@fontsource/source-sans-pro": "4.5.4",
"@hedgedoc/html-to-react": "1.1.1",
"@hedgedoc/markdown-it-image-size": "1.0.3",
"@hedgedoc/markdown-it-task-lists": "1.0.3",
"@matejmazur/react-katex": "3.1.3",
"@redux-devtools/core": "3.11.0",
"@svgr/webpack": "6.2.1",
"@uiw/react-codemirror": "4.5.1",
"abcjs": "6.0.1",
"bootstrap": "4.6.1",
"copy-webpack-plugin": "10.2.4",
"cross-env": "7.0.3",
"d3-graphviz": "3.2.0",
"diff": "5.0.0",
"dompurify": "2.3.6",
"emoji-picker-element": "1.11.0",
"emoji-picker-element-data": "1.3.0",
"fast-deep-equal": "3.1.3",
"firacode": "6.2.0",
"flowchart.js": "1.17.1",
"fork-awesome": "1.2.0",
"highlight.js": "11.5.0",
"i18next": "21.6.14",
"i18next-browser-languagedetector": "6.1.3",
"i18next-resources-to-backend": "1.0.0",
"js-yaml": "4.1.0",
"katex": "0.15.2",
"luxon": "2.3.1",
"markdown-it": "12.3.2",
"markdown-it-abbr": "1.0.4",
"markdown-it-anchor": "8.4.1",
"markdown-it-container": "3.0.0",
"markdown-it-deflist": "2.1.0",
"markdown-it-emoji": "2.0.0",
"markdown-it-footnote": "3.0.3",
"markdown-it-ins": "3.0.1",
"markdown-it-mark": "3.0.1",
"markdown-it-mathjax": "2.0.0",
"markdown-it-plantuml": "1.4.1",
"markdown-it-regex": "0.2.0",
"markdown-it-sub": "1.0.0",
"markdown-it-sup": "1.0.0",
"markdown-it-task-lists": "2.1.1",
"markdown-it-toc-done-right": "4.2.0",
"markmap-common": "0.1.6",
"markmap-lib": "0.12.0",
"markmap-view": "0.2.7",
"mermaid": "8.14.0",
"next": "12.1.0",
"optional-js": "2.3.0",
"react": "17.0.2",
"react-bootstrap": "1.6.4",
"react-bootstrap-typeahead": "5.2.2",
"react-diff-viewer": "3.1.1",
"react-dom": "17.0.2",
"react-i18next": "11.15.6",
"react-redux": "7.2.6",
"react-use": "17.3.2",
"redux": "4.1.2",
"reveal.js": "4.3.0",
"sanitize-filename": "1.6.3",
"sass": "1.49.9",
"sharp": "0.30.2",
"twemoji-colr-font": "0.0.4",
"use-resize-observer": "8.0.0",
"uuid": "8.3.2",
"vega": "5.22.0",
"vega-embed": "6.20.8",
"vega-lite": "5.2.0",
"words-count": "2.0.2"
},
"devDependencies": {
"@next/bundle-analyzer": "12.1.0",
"@testing-library/cypress": "8.0.2",
"@testing-library/jest-dom": "5.16.2",
"@testing-library/react": "12.1.4",
"@testing-library/user-event": "13.5.0",
"@types/d3-graphviz": "2.6.7",
"@types/diff": "5.0.2",
"@types/dompurify": "2.3.3",
"@types/js-yaml": "4.0.5",
"@types/luxon": "2.3.0",
"@types/markdown-it": "12.2.3",
"@types/markdown-it-container": "2.0.5",
"@types/markdown-it-plantuml": "1.4.1",
"@types/mermaid": "8.2.8",
"@types/node": "16.11.26",
"@types/react": "17.0.40",
"@types/react-bootstrap-typeahead": "5.1.8",
"@types/react-dom": "17.0.13",
"@types/sass": "1.43.1",
"@types/uuid": "8.3.4",
"@typescript-eslint/eslint-plugin": "5.14.0",
"@typescript-eslint/parser": "5.14.0",
"cypress": "9.5.1",
"cypress-commands": "2.0.1",
"cypress-fill-command": "1.0.2",
"eslint": "8.11.0",
"eslint-config-next": "12.1.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-chai-friendly": "0.7.2",
"eslint-plugin-cypress": "2.12.1",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "6.0.0",
"eslint-plugin-testing-library": "5.0.6",
"jest": "27.5.1",
"netlify-cli": "9.13.0",
"prettier": "2.5.1",
"react-test-renderer": "17.0.2",
"redux-devtools-extension": "2.13.9",
"ts-loader": "9.2.8",
"ts-mockery": "1.2.0",
"ts-node": "10.7.0",
"typescript": "4.6.2"
},
"packageManager": "[email protected]"
}