-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
99 lines (99 loc) · 3 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
{
"name": "annotation-studio",
"version": "4.0.0",
"author": "Ben Silverman and Joshua Mbogo",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/mitaai/AnnotationStudio"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"test": "jest --watch",
"test:ci": "jest --ci",
"lint": "eslint --fix --ext .js,.jsx ./src",
"lint-latest": "LIST=`git diff-index --name-only --diff-filter=d HEAD | grep .*\\.js | grep -v json`; if [ \"$LIST\" ]; then eslint --fix $LIST; fi",
"quality-check": "npm run lint-latest && jest -b -o",
"postinstall": "patch-package"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.105.0",
"@google-cloud/language": "^4.3.2",
"@next-auth/mongodb-adapter": "^1.1.1",
"@sendgrid/mail": "^7.4.2",
"@sindresorhus/slugify": "^1.1.0",
"@tinymce/tinymce-react": "^3.9.0",
"@udecode/slate-plugins": "^0.75.2",
"apache-annotator": "^0.1.0",
"aws-sdk": "^2.1151.0",
"bootstrap": "^4.6.0",
"crypto-random-string": "^3.3.0",
"date-fns": "^2.22.1",
"dom-parser": "^0.1.6",
"escape-html": "^1.0.3",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.2.1",
"formik": "^2.2.6",
"html-to-image": "^1.6.2",
"jquery": "^3.6.0",
"lodash": "^4.17.21",
"lodash.debounce": "^4.0.8",
"moment": "^2.29.1",
"mongodb": "^4.13.0",
"next": "^12.1.6",
"next-auth": "4.15.1",
"nodemailer": "^6.4.17",
"nookies": "^2.5.2",
"nprogress": "^0.2.0",
"patch-package": "^6.4.7",
"popper.js": "^1.16.1",
"react": "^17.0.2",
"react-bootstrap": "^1.5.2",
"react-bootstrap-icons": "^1.4.0",
"react-bootstrap-range-slider": "^2.0.2",
"react-bootstrap-typeahead": "^5.1.4",
"react-datepicker": "^4.1.1",
"react-device-detect": "^1.15.0",
"react-dom": "^17.0.2",
"react-html-parser": "^2.0.2",
"react-native": "^0.71.1",
"react-s3-uploader": "^5.0.0",
"react-use-websocket": "^4.5.0",
"sass": "^1.32.5",
"semantic-ui-css": "^2.4.1",
"semantic-ui-react": "^2.0.3",
"shortid": "^2.2.16",
"slate": "^0.66.5",
"slate-history": "^0.66.0",
"slate-hyperscript": "^0.62.0",
"slate-react": "^0.63.0",
"tinymce": "^5.6.2",
"typeorm": "0.2.28",
"typescript": "^3.9.7",
"unfetch": "^4.2.0",
"yup": "^0.29.3"
},
"devDependencies": {
"@testing-library/react": "^11.2.3",
"@testing-library/react-hooks": "^5.0.3",
"@types/mongodb": "^3.6.3",
"cookie": "^0.4.1",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-testing-library": "^3.10.1",
"husky": "^4.3.8",
"identity-obj-proxy": "^3.0.0",
"node-mocks-http": "^1.10.1",
"react-test-renderer": "^17.0.1",
"serverless": "^3.27.0",
"test-listen": "^1.1.0"
},
"peerOptionalDependencies": {
"mongodb": "^3.6.0"
}
}