-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.61 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.61 KB
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
{
"name": "bmx",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"start:prod": "pm2 start pnpm -- start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"prettier": "prettier src --check",
"prettier:fix": "prettier src --write"
},
"dependencies": {
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@fontsource/public-sans": "^4.5.11",
"@fontsource/roboto": "^4.5.8",
"@monaco-editor/react": "^4.4.6",
"@mui/icons-material": "^5.11.0",
"@mui/joy": "5.0.0-alpha.61",
"@mui/material": "^5.11.3",
"@next/font": "13.1.1",
"@socket.io/mongo-adapter": "^0.2.1",
"@socket.io/postgres-adapter": "^0.3.0",
"@types/node": "18.11.17",
"@types/pg": "^8.6.6",
"@types/react": "18.0.26",
"@types/react-dom": "18.0.10",
"@types/selenium-webdriver": "^4.1.9",
"axios": "^1.2.1",
"firebase": "^9.16.0",
"fuzzysort": "^2.0.4",
"js-confetti": "^0.11.0",
"mongodb": "^4.13.0",
"mongoose": "^6.8.2",
"next": "13.1.1",
"next-auth": "^4.18.7",
"pg": "^8.8.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-split": "^2.0.14",
"react-toastify": "^9.1.1",
"selenium-webdriver": "^4.7.1",
"socket.io": "^4.5.4",
"socket.io-client": "^4.5.4"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.48.0",
"@typescript-eslint/parser": "^5.48.0",
"eslint": "8.30.0",
"eslint-config-next": "13.1.1",
"eslint-config-prettier": "^8.6.0",
"prettier": "2.8.1",
"typescript": "4.9.4"
}
}