-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
117 lines (117 loc) · 3.65 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
{
"name": "codepair",
"version": "1.0.0",
"scripts": {
"dev": "vite --config ./config/vite.config.development.ts",
"build": "tsc && vite build --config ./config/vite.config.ts",
"preview": "vite preview",
"lint": "eslint . --ext .ts,.tsx",
"lint:fix": "eslint --fix . --ext .ts,.tsx",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"@emoji-mart/data": "^1.1.2",
"@emotion/react": "^11.10.6",
"@emotion/styled": "^11.10.6",
"@liradb2000/markdown-it-mermaid": "^0.4.4",
"@marp-team/marpit": "^2.4.2",
"@milkdown/core": "^7.1.1",
"@milkdown/ctx": "^7.1.1",
"@milkdown/plugin-block": "^7.1.1",
"@milkdown/plugin-cursor": "^7.1.1",
"@milkdown/plugin-history": "^7.1.1",
"@milkdown/plugin-listener": "^7.1.1",
"@milkdown/plugin-slash": "^7.1.1",
"@milkdown/preset-commonmark": "^7.1.1",
"@milkdown/prose": "^7.1.1",
"@milkdown/react": "^7.1.1",
"@milkdown/theme-nord": "^7.1.1",
"@milkdown/transformer": "^7.1.1",
"@milkdown/utils": "^7.1.1",
"@mui/icons-material": "^5.11.11",
"@mui/lab": "^5.0.0-alpha.123",
"@mui/material": "^5.11.13",
"@mui/x-date-pickers": "^6.0.4",
"@prosemirror-adapter/react": "^0.2.4",
"@react-hook/throttle": "^2.2.0",
"@reduxjs/toolkit": "^1.9.3",
"@sentry/react": "^7.43.0",
"@sentry/tracing": "^7.43.0",
"@tldraw/core": "^1.23.2",
"@tldraw/tldraw": "^1.29.2",
"anonymous-animals-gen": "^1.0.3",
"codemirror": "^5.58.1",
"dayjs": "^1.11.7",
"easymde": "hackerwins/easy-markdown-editor#master",
"emoji-picker-react": "^4.4.8",
"fenceparser": "^2.2.0",
"fit-curve": "^0.2.0",
"history": "^5.3.0",
"invert-color": "^2.0.0",
"mermaid": "^10.1.0",
"randomcolor": "^0.6.2",
"react": "^18.2.0",
"react-copy-to-clipboard": "^5.1.0",
"react-dom": "^18.2.0",
"react-ga4": "^2.1.0",
"react-markdown": "^8.0.7",
"react-qr-code": "^2.0.11",
"react-redux": "^8.0.5",
"react-router-dom": "^6.9.0",
"react-simplemde-editor": "^5.2.0",
"react-syntax-highlighter": "^15.5.0",
"redux": "^4.2.1",
"rehype-katex": "^6.0.3",
"remark-emoji": "^3.1.1",
"remark-gfm": "^3.0.1",
"remark-math": "^5.1.1",
"remark-toc": "^8.0.1",
"tss-react": "^4.8.2",
"unique-names-generator": "^4.7.1",
"yorkie-js-sdk": "^0.5.3"
},
"devDependencies": {
"@esbuild-plugins/node-globals-polyfill": "^0.2.3",
"@types/codemirror": "0.0.109",
"@types/jest": "^29.5.0",
"@types/randomcolor": "^0.5.7",
"@types/react": "^18.0.28",
"@types/react-copy-to-clipboard": "^5.0.4",
"@types/react-dom": "^18.0.11",
"@types/react-syntax-highlighter": "^15.5.6",
"@typescript-eslint/eslint-plugin": "^5.56.0",
"@typescript-eslint/parser": "^5.56.0",
"@vitejs/plugin-react": "^3.1.0",
"eslint": "^8.36.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"husky": "^4.2.5",
"jsdom": "^21.1.1",
"lint-staged": "^10.3.0",
"prettier": "^2.8.5",
"rollup-plugin-node-polyfills": "^0.2.1",
"sass": "^1.59.3",
"typescript": "^4.9.3",
"vite": "^4.3.9",
"vite-plugin-eslint": "^1.8.1",
"vite-plugin-node-polyfills": "^0.7.0",
"vitest": "^0.29.7"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --write",
"npm test -- --passWithNoTests"
],
"**/*.{ts,tsx}": "eslint"
}
}