-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.83 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
{
"name": "my-app",
"version": "0.1.0",
"private": true,
"dependencies": {
"@chakra-ui/icons": "^2.1.1",
"@chakra-ui/react": "^2.8.2",
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.5",
"@lezer/highlight": "^1.2.0",
"@monaco-editor/react": "^4.6.0",
"@react-md/icon": "^5.1.6",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^14.5.2",
"@uiw/codemirror-extensions-langs": "^4.21.25",
"@uiw/codemirror-themes": "^4.21.25",
"@uiw/react-codemirror": "^4.21.25",
"codemirror": "^6.0.1",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"framer-motion": "^6.5.1",
"hoist-non-react-statics": "^3.3.2",
"monaco-editor": "^0.48.0",
"nodemon": "^3.1.0",
"path": "^0.12.7",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-avatar": "^5.0.3",
"react-dom": "^18.2.0",
"react-hot-toast": "^2.4.1",
"react-icons": "^3.11.0",
"react-is": "^18.3.1",
"react-router": "^6.23.1",
"react-router-dom": "^6.22.3",
"react-scripts": "5.0.1",
"socket.io": "^4.7.5",
"socket.io-client": "^4.7.5",
"uuid": "^9.0.1",
"web-vitals": "^2.1.4"
},
"scripts": {
"start": "set port=3000 && react-scripts start",
"build": "npm run build && react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"server:dev": "nodemon server.js",
"server": "node server.js"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/plugin-proposal-private-property-in-object": "^7.21.11"
}
}