-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
121 lines (121 loc) · 3.6 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
{
"name": "@hyper-hyper-space/wiki-collab-web",
"version": "0.0.0",
"author": "Santiago Bazerque",
"license": "MIT",
"private": false,
"dependencies": {
"@emoji-mart/data": "^1.1.2",
"@emoji-mart/react": "^1.1.1",
"@emotion/react": "^11.7.1",
"@emotion/styled": "^11.6.0",
"@floating-ui/react": "^0.20.1",
"@fontsource/roboto": "^4.5.1",
"@hyper-hyper-space/core": "0.12.0",
"@hyper-hyper-space/home": "0.2.0",
"@hyper-hyper-space/hyper-browser-web": "0.1.0",
"@hyper-hyper-space/react": "0.5.0",
"@hyper-hyper-space/wiki-collab": "0.2.0",
"@mui/icons-material": "^5.10.15",
"@mui/lab": "^5.0.0-alpha.81",
"@mui/material": "^5.4.4",
"@tiptap/core": "2.0.0-beta.218",
"@tiptap/extension-bold": "^2.0.0-beta.218",
"@tiptap/extension-code-block": "^2.0.0-beta.218",
"@tiptap/extension-code-block-lowlight": "^2.0.0-beta.218",
"@tiptap/extension-document": "^2.0.0-beta.218",
"@tiptap/extension-heading": "^2.0.0-beta.218",
"@tiptap/extension-highlight": "^2.0.0-beta.218",
"@tiptap/extension-history": "^2.0.0-beta.218",
"@tiptap/extension-italic": "^2.0.0-beta.218",
"@tiptap/extension-link": "^2.0.0-beta.218",
"@tiptap/extension-mention": "^2.0.0-beta.218",
"@tiptap/extension-paragraph": "^2.0.0-beta.218",
"@tiptap/extension-placeholder": "^2.0.0-beta.218",
"@tiptap/extension-strike": "^2.0.0-beta.218",
"@tiptap/extension-text": "^2.0.0-beta.218",
"@tiptap/extension-text-align": "^2.0.0-beta.218",
"@tiptap/extension-underline": "^2.0.0-beta.218",
"@tiptap/pm": "^2.0.0-beta.218",
"@tiptap/react": "^2.0.0-beta.218",
"@tiptap/starter-kit": "2.0.0-beta.218",
"@tiptap/suggestion": "^2.0.0-beta.218",
"emoji-mart": "^5.5.2",
"lodash-es": "^4.17.21",
"lowlight": "^2.7.0",
"react": "^17.0.2",
"react-beautiful-dnd": "^13.1.0",
"react-dom": "^17.0.2",
"react-router": "^6.2.1",
"react-router-dom": "^6.2.1",
"react-scripts": "5.0.0",
"tippy.js": "^6.3.7",
"web-vitals": "^2.1.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.0.0",
"@testing-library/user-event": "^13.2.1",
"@types/jest": "^27.0.1",
"@types/lodash-es": "^4.17.6",
"@types/node": "^16.7.13",
"@types/react": "^17.0.20",
"@types/react-beautiful-dnd": "^13.1.0",
"@types/react-dom": "^17.0.9",
"@typescript-eslint/eslint-plugin": "^5.55.0",
"@typescript-eslint/parser": "^5.55.0",
"eslint": "^8.36.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^5.0.0-next-56a3c18e5-20230314",
"husky": "^8.0.3",
"lint-staged": "^13.2.0",
"prettier": "^2.8.4",
"prettier-plugin-organize-imports": "^3.2.2",
"typescript": "^4.4.2",
"yarn": "^1.22.19"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"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"
]
},
"resolutions": {
"@types/react": "17.0.20",
"@types/react-dom": "17.0.9"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write",
"eslint --fix",
"git add"
],
"*.{html,css,less,ejs}": [
"prettier --write",
"git add"
]
}
}