-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.52 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
69
70
71
72
73
74
75
76
{
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"test": "jest",
"test:api": "jest api",
"test:api:ci": "jest api --ci",
"test:ui": "jest ui",
"test:ui:ci": "jest ui --ci",
"test:coverage": "jest --coverage",
"test:coverage:ci": "jest --coverage --ci",
"test:watch": "jest --watch",
"eslint": "eslint .",
"eslint:quiet": "eslint --quiet .",
"prettier:c": "prettier --check .",
"prettier:w": "prettier --write ."
},
"dependencies": {
"@emotion/cache": "latest",
"@emotion/react": "latest",
"@emotion/server": "latest",
"@emotion/styled": "latest",
"@mui/icons-material": "latest",
"@mui/lab": "^5.0.0-alpha.170",
"@mui/material": "latest",
"@mui/material-nextjs": "latest",
"bcrypt": "^5.1.1",
"btoa": "^1.2.1",
"formdata-node": "^6.0.3",
"mongodb": "^4.8.1",
"next": "latest",
"next-swagger-doc": "^0.1.9",
"node-fetch": "^2.7.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-react": "^3.52.3",
"types-ramda": "0.29.9",
"vercel": "^33.6.3"
},
"devDependencies": {
"@babel/preset-env": "^7.24.0",
"@babel/preset-react": "^7.23.3",
"@next/eslint-plugin-next": "^14.1.4",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^14.2.1",
"@testing-library/user-event": "^14.5.2",
"@types/bcrypt": "^5.0.2",
"@types/cookie": "^0.6.0",
"@types/jest": "^29.5.12",
"@types/jsonwebtoken": "^9.0.6",
"@types/node": "18.7.5",
"@types/react": "latest",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-react": "^4.18.3",
"@typescript-eslint/eslint-plugin": "^7.1.1",
"@typescript-eslint/parser": "^7.1.1",
"babel-jest": "^29.7.0",
"cookie": "^0.6.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jsdoc": "^48.2.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jsonwebtoken": "^9.0.2",
"node-mocks-http": "^1.14.1",
"prettier": "3.2.5",
"react-test-renderer": "^18.2.0",
"text-encoding": "^0.7.0",
"typescript": "4.7.4"
}
}