-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.38 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
{
"name": "dookey",
"version": "1.0.0",
"private": true,
"scripts": {
"start": "cross-env BROWSER=none next start -p 3693",
"build": "next build",
"test": "next test",
"eject": "react-scripts eject",
"tauri": "tauri",
"dev": "npm run dev:app",
"dev:web": "cross-env NEXT_PUBLIC_APP_ENV=web next dev -p 3693",
"dev:app": "cross-env NEXT_PUBLIC_APP_ENV=app next dev -p 3693",
"lint": "next lint"
},
"dependencies": {
"@draft-js-plugins/editor": "^4.1.3",
"@draft-js-plugins/emoji": "^4.6.3",
"@emoji-mart/data": "^1.0.5",
"@emoji-mart/react": "^1.0.1",
"@emotion/react": "^11.10.6",
"@emotion/styled": "^11.10.6",
"@mui/material": "^5.11.14",
"@primer/octicons-react": "^17.6.0",
"@reduxjs/toolkit": "^1.8.6",
"@tauri-apps/api": "^1.0.0-rc.1",
"@testing-library/jest-dom": "^5.16.2",
"@testing-library/react": "^12.1.3",
"@testing-library/user-event": "^13.5.0",
"autosize": "^5.0.1",
"classnames": "^2.3.1",
"emoji-mart": "^5.2.1",
"emoji-picker-element": "^1.12.1",
"emoji-search": "^1.0.0",
"eslint-config-next": "^13.4.1",
"express": "^4.17.2",
"fs-extra": "^10.0.1",
"fs-then": "^0.2.0",
"fuzzy-search": "^3.2.1",
"gemoji": "^7.1.0",
"next-connect": "^0.12.1",
"next-transpile-modules": "^10.0.0",
"prop-types": "^15.8.1",
"random-color": "^1.0.1",
"randomcolor": "^0.6.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-emoji-popup-lister": "^0.2.27",
"react-input-emoji": "^4.1.0",
"react-markdown": "^8.0.0",
"react-redux": "^8.0.4",
"redux": "^4.2.0",
"redux-persist": "^6.0.0",
"rehype-raw": "^6.1.1",
"remark-gemoji": "^7.0.1",
"remark-gfm": "^3.0.1",
"uuid": "^8.3.2",
"web-vitals": "^2.1.4"
},
"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": {
"@tauri-apps/cli": "^1.0.0-rc.8",
"@types/emoji-mart": "^3.0.9",
"cross-env": "^7.0.3",
"eslint": "^8.27.0",
"eslint-plugin-react": "^7.32.2",
"next": "^13.4.1"
}
}