-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
127 lines (127 loc) · 3.89 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
{
"name": "notion-browser-client",
"version": "0.1.0",
"private": true,
"dependencies": {
"@_ueberdosis/prosemirror-tables": "^1.1.3",
"@emoji-mart/data": "^1.1.2",
"@emoji-mart/react": "^1.1.1",
"@iconify/react": "^4.1.1",
"@reduxjs/toolkit": "^1.9.5",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@tippyjs/react": "^4.2.6",
"@tiptap/core": "^2.0.3",
"@tiptap/extension-blockquote": "^2.0.3",
"@tiptap/extension-bold": "^2.0.3",
"@tiptap/extension-bullet-list": "^2.0.3",
"@tiptap/extension-code": "^2.0.3",
"@tiptap/extension-color": "^2.0.3",
"@tiptap/extension-dropcursor": "^2.0.3",
"@tiptap/extension-gapcursor": "^2.0.3",
"@tiptap/extension-hard-break": "^2.0.3",
"@tiptap/extension-heading": "^2.0.3",
"@tiptap/extension-highlight": "^2.0.3",
"@tiptap/extension-history": "^2.0.3",
"@tiptap/extension-horizontal-rule": "^2.0.3",
"@tiptap/extension-italic": "^2.0.3",
"@tiptap/extension-list-item": "^2.0.3",
"@tiptap/extension-mention": "^2.0.3",
"@tiptap/extension-ordered-list": "^2.0.3",
"@tiptap/extension-strike": "^2.0.3",
"@tiptap/extension-task-item": "^2.0.3",
"@tiptap/extension-task-list": "^2.0.3",
"@tiptap/extension-text": "^2.0.3",
"@tiptap/extension-text-style": "^2.0.3",
"@tiptap/extension-underline": "^2.0.3",
"@tiptap/pm": "^2.0.3",
"@tiptap/react": "^2.0.3",
"@types/emoji-mart": "^3.0.9",
"@types/firebase": "^3.2.1",
"@types/node": "^17.0.45",
"@types/react": "^18.2.9",
"@types/react-dom": "^18.2.4",
"@types/react-router-dom": "^5.3.3",
"@types/uuid": "^9.0.2",
"axios": "^1.4.0",
"dotenv": "^16.1.4",
"emoji-mart": "^5.5.2",
"firebase": "^9.23.0",
"fuzzysort": "^2.0.4",
"git-conventional-commits": "^2.6.5",
"linkifyjs": "^4.1.1",
"lodash": "^4.17.21",
"moment": "^2.29.4",
"prosemirror-model": "^1.19.2",
"prosemirror-state": "^1.4.3",
"prosemirror-view": "^1.31.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.9.0",
"react-query": "^3.39.3",
"react-redux": "^8.0.7",
"react-router-dom": "^6.14.1",
"react-scripts": "5.0.1",
"sass": "^1.63.0",
"twemoji": "^14.0.2",
"typescript": "^4.9.5",
"uuid": "^9.0.0",
"web-vitals": "^2.1.4"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"lint": "eslint --ignore-path .gitignore .",
"format": "prettier --ignore-path .gitignore --write \"**/*.{ts,tsx,css,scss}\"",
"prepare": "husky install",
"pre-commit": "lint-staged",
"server": "json-server --watch ./src/data/db.json --port 4000",
"coverage": "npm test -- --coverage --watchAll --collectCoverageFrom='src/components/**/*{ts,tsx}' --collectCoverageFrom='src/pages/**/*.{ts,tsx}' --collectCoverageFrom='src/slice/**/*{ts,tsx}' --collectCoverageFrom='src/layouts/**/*{ts,tsx}'"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest",
"plugin:jest-dom/recommended",
"eslint-config-prettier"
]
},
"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/user-event": "^14.4.3",
"@types/lodash": "^4.14.195",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-jest-dom": "^5.0.1",
"husky": "^8.0.0",
"json-server": "^0.17.3",
"lint-staged": "^13.2.2",
"msw": "^1.2.2",
"prettier": "^2.8.8"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint"
],
"*.{ts,tsx,css,scss}": [
"prettier --write"
]
},
"jest": {
"moduleNameMapper": {
"^axios$": "axios/dist/axios.js"
}
}
}