-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.18 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 2.18 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "mini-portfolio-app",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"migrate:up": "migrate-mongo up",
"migrate:down": "migrate-mongo down",
"migrate:status": "migrate-mongo status",
"test:e2e": "playwright test"
},
"dependencies": {
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@mui/icons-material": "^5.4.1",
"@mui/lab": "^5.0.0-alpha.103",
"@mui/material": "^5.10.14",
"@mui/styles": "^5.4.2",
"@mui/x-data-grid": "^5.14.0",
"@mui/x-date-pickers": "^5.0.1",
"@next-auth/mongodb-adapter": "^1.0.1",
"@next/env": "^13.1.6",
"@octokit/core": "^3.6.0",
"@sendgrid/mail": "^7.7.0",
"airtable": "^0.11.3",
"axios": "^0.26.1",
"clsx": "^1.1.1",
"date-fns": "^2.29.3",
"date-fns-tz": "^1.3.7",
"dompurify": "^2.3.6",
"fast-csv": "^4.3.6",
"formik": "^2.2.9",
"formik-material-ui": "^4.0.0-alpha.2",
"isomorphic-dompurify": "^0.18.0",
"lodash.escaperegexp": "^4.1.2",
"lodash.groupby": "^4.6.0",
"lodash.isboolean": "^3.0.3",
"lodash.isfunction": "^3.0.9",
"lodash.isnil": "^4.0.0",
"lodash.isundefined": "^3.0.1",
"material-ui-snackbar-provider": "^2.0.0",
"migrate-mongo": "^9.0.0",
"mongo-seeding": "^3.7.2",
"mongodb": "^4.3.1",
"mongoose": "^6.7.3",
"mongoose-hidden": "^1.9.1",
"nanoid": "^3.3.1",
"next": "^12.3.4",
"next-auth": "^4.22.1",
"next-pwa": "^5.6.0",
"next-swagger-doc": "^0.3.6",
"normalize.css": "^8.0.1",
"p5": "^1.4.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-p5": "^1.3.28",
"rehype-react": "^7.1.1",
"remark-parse": "^10.0.1",
"remark-rehype": "^10.1.0",
"save": "^2.9.0",
"slugify": "^1.6.6",
"swagger-ui-react": "^4.15.5",
"unified": "^10.1.2",
"uuid": "^8.3.2",
"yup": "^0.32.11"
},
"devDependencies": {
"@faker-js/faker": "^7.6.0",
"@playwright/test": "^1.31.2",
"eslint": "8.8.0",
"eslint-config-next": "12.0.10",
"jest": "^29.5.0",
"mongodb-memory-server": "^8.12.0",
"msw": "^1.1.0",
"playwright-msw": "^2.2.0"
}
}