-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
73 lines (73 loc) · 2.22 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
{
"name": "octopus",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev -p 3030",
"build": "next build",
"start": "next start",
"custom-start": "cross-env NEXT_PUBLIC_DOMAIN=$NEXT_PUBLIC_DOMAIN NEXT_PUBLIC_BASE_URL=$NEXT_PUBLIC_BASE_URL node src/config/set-env.js && next build && next start",
"lint": "next lint",
"lint:code:fix": "eslint src --ext .js,.ts,.tsx --fix"
},
"dependencies": {
"@fortaine/fetch-event-source": "^3.0.6",
"@headlessui/react": "^1.7.15",
"@hello-pangea/dnd": "^16.3.0",
"@heroicons/react": "^2.0.18",
"@reduxjs/toolkit": "^1.9.1",
"@svgr/webpack": "^8.0.1",
"@types/dom-speech-recognition": "^0.0.2",
"@types/react-highlight": "^0.12.6",
"@types/react-redux": "^7.1.33",
"@uiw/react-textarea-code-editor": "^3.0.2",
"axios": "^1.4.0",
"classnames": "^2.3.2",
"cross-env": "^7.0.3",
"dotenv": "^16.3.1",
"emoji-picker-react": "^4.4.9",
"fuse.js": "^6.6.2",
"iso-639-1": "^3.1.0",
"mermaid": "^10.2.4",
"next": "13.4.7",
"next-auth": "^4.22.1",
"react": "18.2.0",
"react-colorful": "^5.6.1",
"react-dom": "18.2.0",
"react-highlight": "^0.15.0",
"react-hook-form": "^7.45.1",
"react-hot-toast": "^2.4.1",
"react-markdown": "^8.0.7",
"react-redux": "^8.0.5",
"react-router-dom": "^6.14.1",
"react-select": "^5.7.5",
"react-webcam": "^7.1.1",
"rehype-highlight": "^6.0.0",
"rehype-katex": "^6.0.3",
"remark-breaks": "^3.0.3",
"remark-gfm": "^3.0.1",
"remark-math": "^5.1.1",
"sharp": "^0.33.5",
"spark-md5": "^3.0.2",
"use-debounce": "^9.0.4",
"zustand": "^4.3.8"
},
"devDependencies": {
"@next/eslint-plugin-next": "^13.4.7",
"@types/node": "20.3.3",
"@types/react": "18.2.14",
"@types/react-dom": "18.2.6",
"@types/spark-md5": "^3.0.2",
"@typescript-eslint/eslint-plugin": "^5.60.1",
"@typescript-eslint/parser": "^5.60.1",
"autoprefixer": "10.4.14",
"eslint": "8.44.0",
"eslint-config-next": "13.4.7",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"postcss": "8.4.24",
"prettier": "^2.8.8",
"tailwindcss": "3.3.2",
"typescript": "5.1.6"
}
}