-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
103 lines (103 loc) · 3.21 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "codvid19ht",
"version": "0.0.2",
"private": true,
"license": "MIT",
"scripts": {
"clean": "rm -rf .next && rm -f public/sw* && rm -f public/workbox*",
"dev": "next dev",
"dev:clean": "yarn clean && next dev",
"build": "yarn clean && next build",
"start": "next start",
"analyze": "cross-env ANALYZE=true yarn build",
"lint": "eslint ./src --ext .js,.jsx --ignore-path .gitignore",
"lint:fix": "eslint ./src --ext .js,.jsx --fix --ignore-path .gitignore",
"precommit": "pretty-quick --staged"
},
"dependencies": {
"@chakra-ui/core": "^0.8.0",
"@emotion/core": "^10.0.28",
"@emotion/styled": "^10.0.27",
"@next/bundle-analyzer": "^10.0.0",
"@uppy/aws-s3": "^1.6.4",
"@uppy/core": "^1.10.4",
"@uppy/dashboard": "^1.8.5",
"@uppy/react": "^1.6.5",
"@uppy/tus": "^1.5.10",
"@uppy/webcam": "^1.6.5",
"@uppy/xhr-upload": "^1.5.10",
"@welldone-software/why-did-you-render": "^5.0.0",
"aws-sdk": "^2.658.0",
"bcryptjs": "^2.4.3",
"connect-mongo": "^3.2.0",
"cookie": "^0.4.1",
"cross-env": "^7.0.2",
"dotenv": "^8.2.0",
"emotion-theming": "^10.0.27",
"fast-deep-equal": "^3.1.1",
"image-extensions": "^1.1.0",
"is-hotkey": "^0.1.6",
"is-url": "^1.2.4",
"isomorphic-unfetch": "^3.0.0",
"js-cookie": "^2.2.1",
"js-yaml": "^3.14.0",
"jsonwebtoken": "^9.0.0",
"lodash.flowright": "^3.5.0",
"mongodb": "^3.5.7",
"mongoose": "^5.9.15",
"mongoose-autopopulate": "^0.12.2",
"mongoose-update-if-current": "^1.4.0",
"ms": "^2.1.2",
"next": "^10.0.0",
"next-compose-plugins": "^2.2.0",
"next-connect": "^0.9.1",
"next-cookies": "^2.0.3",
"next-images": "^1.3.0",
"next-pwa": "^3.1.5",
"next-seo": "^4.4.0",
"next-session": "^3.0.1",
"nodemailer": "^6.4.6",
"prop-types": "^15.7.2",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-dropzone": "^11.2.3",
"react-ga": "^3.2.0",
"react-hook-form": "^6.10.1",
"react-icons": "^3.9.0",
"react-progressive-image": "^0.6.0",
"react-share": "^4.1.0",
"react-shimmer": "^3.1.0",
"react-table": "^7.0.4",
"reakit": "^1.0.2",
"sanitize-html": "^2.1.1",
"slate": "^0.59.0",
"slate-history": "^0.59.0",
"slate-hyperscript": "^0.59.0",
"slate-react": "^0.59.0",
"swr": "^0.3.8",
"uuid": "^8.3.1",
"validator": "^13.0.0"
},
"devDependencies": {
"@babel/plugin-proposal-decorators": "^7.3.0",
"babel-eslint": "^10.0.3",
"babel-plugin-emotion": "^10.0.33",
"babel-plugin-import": "^1.12.2",
"babel-plugin-inline-react-svg": "^1.1.1",
"babel-plugin-module-resolver": "^4.0.0",
"babel-plugin-transform-decorators-legacy": "^1.3.5",
"babel-plugin-transform-remove-console": "^6.9.4",
"eslint": "^7.12.1",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.11.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-emotion": "^10.0.7",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "^7.16.0",
"eslint-plugin-react-hooks": "^4.2.0",
"prettier": "2.1.2",
"pretty-quick": "^3.1.0"
}
}