-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.53 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.53 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
{
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"test": "jest --watch",
"test:ci": "jest --ci"
},
"dependencies": {
"@emotion/cache": "^11.10.3",
"@emotion/react": "^11.10.4",
"@emotion/server": "^11.10.0",
"@emotion/styled": "^11.10.4",
"@fontsource/poppins": "^4.5.10",
"@mui/icons-material": "^5.10.9",
"@mui/material": "^5.10.9",
"@types/cors": "^2.8.12",
"axios": "^0.27.2",
"bcrypt": "^5.1.0",
"cookie": "^0.5.0",
"cookie-parser": "^1.4.6",
"cookies-next": "^2.1.1",
"jsonwebtoken": "^8.5.1",
"lodash.clonedeep": "^4.5.0",
"mongodb": "^4.11.0",
"mongoose": "^6.6.6",
"next": "latest",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"sass": "^1.55.0",
"ts-node": "^10.9.1",
"uuid": "^9.0.0"
},
"devDependencies": {
"@emotion/babel-plugin": "^11.10.5",
"@testing-library/jest-dom": "5.16.4",
"@testing-library/react": "13.2.0",
"@testing-library/user-event": "14.2.0",
"@types/bcrypt": "^5.0.0",
"@types/cookie": "^0.5.1",
"@types/cookie-parser": "^1.4.3",
"@types/express": "^4.17.14",
"@types/jsonwebtoken": "^8.5.9",
"@types/lodash.clonedeep": "^4.5.7",
"@types/node": "^18.11.3",
"@types/react": "18.0.9",
"@types/uuid": "^8.3.4",
"autoprefixer": "^10.4.12",
"eslint": "^8.28.0",
"jest": "28.1.0",
"jest-environment-jsdom": "28.1.0",
"postcss": "^8.4.18",
"tailwindcss": "^3.1.8",
"typescript": "4.6.4"
}
}