-
-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
124 lines (124 loc) · 3.44 KB
/
package.json
File metadata and controls
124 lines (124 loc) · 3.44 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
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
{
"name": "code",
"version": "2.0.0",
"private": true,
"type": "module",
"packageManager": "yarn@3.6.1",
"scripts": {
"dev": "vite",
"prod": "tsc && vite build && cp CHANGELOG.md dist && vite preview",
"host": "vite --host",
"build": "tsc && vite build && cp CHANGELOG.md dist",
"test": "vitest",
"test:coverage": "vitest --coverage",
"test:ui": "vitest --ui --coverage.enabled=true",
"test:pr": "vitest --coverage.enabled true",
"coverage:preview": "npx vite preview --outDir ./html",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"lint:fix": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0 --fix",
"preview": "vite preview",
"postinstall": "node ./postinstall.js",
"knip": "knip"
},
"dependencies": {
"@emotion/react": "^11.11.1",
"@excalidraw/excalidraw": "^0.17.2",
"@faker-js/faker": "^8.4.1",
"@ffmpeg/ffmpeg": "^0.12.7",
"@ffmpeg/util": "^0.12.1",
"@mantine/core": "^6.0.10",
"@mantine/hooks": "^6.0.10",
"@monaco-editor/react": "^4.6.0",
"@tanstack/react-query": "^5.13.4",
"@tinymce/tinymce-react": "^4.3.2",
"@types/file-saver": "^2.0.7",
"@types/react-router-dom": "^5.3.3",
"@uiw/react-markdown-preview": "^5.0.3",
"@uiw/react-md-editor": "^4.0.1",
"antd": "^5.17.0",
"buffer": "^6.0.3",
"diff": "^5.1.0",
"file-saver": "^2.0.5",
"fs-extra": "^11.2.0",
"html-to-image": "^1.11.11",
"js-beautify": "^1.14.11",
"json-to-ts": "^1.7.0",
"jspdf": "^2.5.1",
"jszip": "^3.10.1",
"jszip-utils": "^0.1.0",
"jwt-decode": "^4.0.0",
"lucide-react": "^0.344.0",
"marked": "^11.1.0",
"msw": "1.3.2",
"papaparse": "^5.4.1",
"react": "^18.2.0",
"react-cookie-consent": "^9.0.0",
"react-dom": "^18.2.0",
"react-error-boundary": "^4.0.11",
"react-ga4": "^2.1.0",
"react-head": "^3.4.2",
"react-markdown": "9.0.1",
"react-responsive-carousel": "^3.2.23",
"react-router-dom": "^6.21.0",
"react-syntax-highlighter": "^15.5.0",
"tinycolor2": "^1.6.0",
"tinymce": "^6.8.2",
"values.js": "^2.1.1",
"webfontloader": "^1.6.28"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@testing-library/jest-dom": "^6.1.5",
"@testing-library/react": "^14.1.2",
"@testing-library/user-event": "^14.5.1",
"@types/diff": "^5.0.9",
"@types/jest": "^29.5.12",
"@types/js-beautify": "^1.14.3",
"@types/js-yaml": "^4.0.9",
"@types/markdown-it": "^13.0.7",
"@types/marked": "^6.0.0",
"@types/node": "^20.11.16",
"@types/papaparse": "^5.3.14",
"@types/react": "^18.2.45",
"@types/react-csv": "^1.1.10",
"@types/react-dom": "^18.2.17",
"@types/react-syntax-highlighter": "^15.5.11",
"@types/webfontloader": "^1.6.38",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.20.0",
"@vitejs/plugin-react": "^4.2.1",
"@vitest/coverage-v8": "^1.0.4",
"@vitest/ui": "^1.2.1",
"danger": "^11.3.1",
"eslint": "^8.57.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"jsdom": "^23.0.1",
"knip": "^4.3.1",
"msw": "^1.3.2",
"sass": "^1.69.5",
"scaffdog": "^3.0.0",
"typescript": "^5.3.3",
"vite": "^5.0.12",
"vite-plugin-svgr": "^4.2.0",
"vite-tsconfig-paths": "^4.2.2",
"vitest": "^1.0.4"
}
}