-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 909 Bytes
/
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
{
"type": "module",
"browser": {
"fs": false
},
"dependencies": {
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@mui/base": "^5.0.0-beta.11",
"@mui/icons-material": "^5.11.16",
"@mui/material": "^5.13.5",
"babel-jest": "^29.6.2",
"dotenv": "^16.3.1",
"formidable": "^3.4.0",
"identity-obj-proxy": "^3.0.0",
"mongodb": "^5.6.0",
"mongoose": "^7.3.0",
"next": "^12.3.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sass": "^1.55.0",
"yup": "^1.2.0"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"test": "jest --watch"
},
"devDependencies": {
"@babel/preset-env": "^7.22.9",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^14.0.0",
"jest": "^29.6.2",
"jest-environment-jsdom": "^29.6.2",
"typescript": "5.1.6"
}
}