-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
103 lines (103 loc) · 3.33 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
{
"name": "pennant-ui",
"private": true,
"version": "1.0.0",
"type": "module",
"scripts": {
"start": "vite --host",
"dev": "vite --port 3000",
"build": "tsc && vite build",
"dev:all": "concurrently \"npm run dev\" \"cd ../server && npm run dev\"",
"build:ui": "npm run build && cp -r dist ../server",
"lint": "eslint src --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"postinstall": "playwright install",
"test:e2e": "playwright test",
"test:ct": "playwright test -c playwright-ct.config.ts",
"test": "vitest"
},
"dependencies": {
"@ant-design/icons": "^5.2.6",
"@blocknote/core": "^0.9.3",
"@blocknote/react": "^0.9.3",
"@codemirror/autocomplete": "^6.9.0",
"@codemirror/commands": "^6.2.4",
"@codemirror/lang-javascript": "^6.0.0",
"@codemirror/lang-python": "^6.1.3",
"@codemirror/state": "^6.0.0",
"@codemirror/theme-one-dark": "^6.1.2",
"@codemirror/view": "^6.0.0",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@hocuspocus/provider": "^2.4.0",
"@mantine/core": "^5.6.1",
"@mui/icons-material": "^5.11.16",
"@mui/material": "^5.13.6",
"@mui/x-tree-view": "^6.0.0-alpha.4",
"@react-oauth/google": "^0.11.1",
"@react-spring/web": "^9.7.3",
"@uiw/codemirror-theme-dracula": "^4.21.8",
"@uiw/codemirror-theme-tokyo-night": "^4.21.8",
"@uiw/codemirror-theme-vscode": "^4.21.8",
"antd": "^5.11.0",
"antd-style": "^3.5.1",
"axios": "^1.4.0",
"classnames": "^2.3.2",
"codemirror": "^6.0.0",
"js-beautify": "^1.14.9",
"jwt-decode": "^3.1.2",
"react": "^18.2.0",
"react-avatar": "^5.0.3",
"react-dnd": "^16.0.1",
"react-dnd-html5-backend": "^16.0.1",
"react-dom": "^18.2.0",
"react-markdown": "^9.0.1",
"react-query": "^3.39.3",
"react-router-dom": "^6.12.1",
"react-syntax-highlighter": "^15.5.0",
"react-toastify": "^9.1.3",
"recoil": "^0.7.7",
"sinon": "^15.2.0",
"unique-names-generator": "^4.7.1",
"uuid": "^9.0.0",
"y-codemirror.next": "^0.3.2",
"y-indexeddb": "^9.0.11",
"y-protocols": "^1.0.5",
"yjs": "^13.5.44"
},
"devDependencies": {
"@playwright/experimental-ct-react": "^1.38.1",
"@playwright/test": "^1.38.1",
"@react-spring/types": "^9.7.3",
"@testing-library/jest-dom": "^6.1.3",
"@testing-library/react": "^14.0.0",
"@types/js-beautify": "^1.14.0",
"@types/node": "^20.10.1",
"@types/react": "^18.0.37",
"@types/react-dom": "^18.0.11",
"@types/react-router-dom": "^5.3.3",
"@types/react-syntax-highlighter": "^15.5.11",
"@types/sinon": "^10.0.16",
"@types/uuid": "^9.0.3",
"@typescript-eslint/eslint-plugin": "^6.5.0",
"@typescript-eslint/parser": "^6.5.0",
"@vitejs/plugin-react": "^4.0.0",
"autoprefixer": "^10.4.14",
"babel-plugin-import": "^1.13.6",
"eslint": "^8.38.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.3.4",
"get-func-name": "^2.0.2",
"jsdom": "^22.1.0",
"playwright": "^1.40.1",
"postcss": "^8.4.24",
"tailwindcss": "^3.3.2",
"ts-mock-imports": "^1.3.8",
"typescript": "^5.2.2",
"unplugin-fonts": "^1.0.3",
"uvu": "^0.5.6",
"vite": "^4.5.2",
"vitest": "^0.34.4"
}
}