-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.9 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
{
"name": "my-portal",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"dev:debug": "NODE_OPTIONS='--inspect' next dev",
"build": "next build",
"start": "next start",
"lint": "next lint --dir pages --dir utils",
"test": "jest",
"coverage": "jest --coverage --watchAll --collectCoverageFrom='pages/**/*.{ts,tsx}'"
},
"dependencies": {
"@emotion/react": "^11.9.3",
"@emotion/styled": "^11.9.3",
"@mui/icons-material": "^5.8.4",
"@mui/lab": "^5.0.0-alpha.95",
"@mui/material": "^5.9.0",
"@mui/styles": "^5.9.0",
"@tailwindcss/typography": "^0.5.8",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^14.0.0",
"@types/jest": "^29.5.3",
"@types/js-cookie": "^3.0.2",
"@types/mssql": "^8.0.3",
"@typescript-eslint/eslint-plugin": "^6.2.1",
"@typescript-eslint/parser": "^6.2.1",
"airtable": "^0.11.6",
"autoprefixer": "^10.4.7",
"axios": "^0.27.2",
"classnames": "^2.3.1",
"contentlayer": "^0.3.4",
"date-fns": "^2.29.1",
"dotenv": "^16.0.3",
"eslint-plugin-react": "^7.33.1",
"framer-motion": "^10.15.1",
"jest": "^29.6.2",
"jest-environment-jsdom": "^29.6.2",
"js-cookie": "^3.0.1",
"mongodb": "^4.10.0",
"mssql": "^9.0.0",
"mysql2": "^2.3.3",
"next": "13.5.6",
"next-contentlayer": "^0.3.4",
"next-seo": "^5.4.0",
"postcss": "^8.4.14",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.4.0",
"react-query": "^3.39.1",
"react-toast-notifications": "^2.5.1",
"reading-time": "^1.5.0",
"recoil": "^0.7.4",
"tailwindcss": "^3.1.6",
"usehooks-ts": "^2.6.0"
},
"devDependencies": {
"@types/node": "18.18.2",
"@types/react": "18.0.15",
"@types/react-dom": "18.0.6",
"eslint": "8.19.0",
"eslint-config-next": "13.5.6",
"ts-jest": "^29.1.1",
"typescript": "4.7.4"
}
}