-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 964 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 964 Bytes
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
{
"name": "loopgpt-next",
"version": "0.0.0",
"private": true,
"license": "MIT",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"format": "prettier --write --no-semi --single-quote \"**/*.{js,md}\"",
"lint": "next lint"
},
"dependencies": {
"@emotion/react": "^11.11.0",
"@emotion/styled": "^11.11.0",
"@fontsource/roboto": "^4.5.8",
"@mui/icons-material": "^5.11.16",
"@mui/material": "^5.12.3",
"eslint-config-next": "13.4.1",
"next": "13.4.1",
"next-redux-wrapper": "^8.1.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-json-view": "^1.21.3",
"react-redux": "^8.0.5",
"react-scrollable-feed": "^1.3.2",
"redux": "^4.2.1",
"redux-devtools-extension": "^2.13.9",
"redux-thunk": "^2.4.2",
"socket.io-client": "4.6.1"
},
"devDependencies": {
"dotenv": "^16.0.3",
"eslint": "^8.40.0",
"prettier": "^2.8.8"
}
}