-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
130 lines (130 loc) · 3.62 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
{
"name": "researchequals",
"version": "1.0.0",
"engines": {
"node": "18.x"
},
"scripts": {
"dev": "concurrently --raw 'blitz dev' 'quirrel'",
"build": "blitz build",
"start": "blitz start",
"start:production": "blitz start --port $PORT",
"studio": "blitz prisma studio",
"lint": "eslint --ignore-path .gitignore --ext .js,.ts,.tsx .",
"test": "jest",
"test:watch": "jest --watch",
"prepare": "husky install",
"test:xml": "tsx app/core/crossref/rawtest.ts",
"patch-xsds": "cd app/core/crossref && cp -r original-schemas original-schemas-bak && patch -s -p0 < patches/xsd.diff && mv original-schemas schemas && mv original-schemas-bak original-schemas"
},
"prisma": {
"schema": "db/schema.prisma"
},
"prettier": {
"semi": false,
"printWidth": 100,
"trailingComma": "es5"
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --fix"
]
},
"dependencies": {
"@algolia/autocomplete-js": "1.15.1",
"@blitzjs/auth": "2.0.3",
"@blitzjs/next": "2.0.3",
"@blitzjs/rpc": "2.0.3",
"@carbon/icons-react": "11.40.0",
"@faker-js/faker": "8.4.0",
"@headlessui/react": "1.7.19",
"@prisma/client": "5.9.1",
"@react-pdf-viewer/core": "3.12.0",
"@tailwindcss/forms": "0.5.7",
"@uploadcare/react-widget": "2.4.5",
"algoliasearch": "4.23.3",
"autoprefixer": "10.4.19",
"axios": "1.6.8",
"blitz": "2.0.3",
"classnames": "2.5.1",
"concurrently": "8.2.2",
"crisp-sdk-web": "1.0.25",
"dagre": "0.8.5",
"feed": "4.2.2",
"filesize": "10.1.1",
"form-data": "4.0.0",
"formik": "2.4.5",
"he": "1.2.0",
"husky": "9.0.10",
"i18next": "23.8.2",
"iso-639-1": "3.1.0",
"markdown-it": "13.0.2",
"moment": "2.30.1",
"next": "14.2.12",
"passport-orcid": "0.0.4",
"pdfjs-dist": "3.11.174",
"postcss": "8.4.33",
"postmark": "3.11.0",
"prisma": "5.11.0",
"quill": "1.3.7",
"quirrel": "1.14.1",
"react": "18.2.0",
"react-confetti": "6.1.0",
"react-cookie-consent": "9.0.0",
"react-dom": "18.2.0",
"react-flow-renderer": "10.3.17",
"react-helmet": "6.1.0",
"react-hot-toast": "2.4.1",
"react-i18next": "14.1.1",
"react-markdown": "9.0.1",
"react-media-hook": "0.5.0",
"react-quilljs": "1.3.3",
"react-syntax-highlighter": "15.5.0",
"react-use": "17.5.0",
"react-xarrows": "2.0.2",
"recharts": "2.12.6",
"recoil": "0.7.7",
"recoil-persist": "5.1.0",
"rehype-external-links": "3.0.0",
"rehype-katex": "7.0.0",
"remark-gfm": "4.0.0",
"remark-math": "6.0.0",
"secure-password": "4.0.0",
"stripe": "14.14.0",
"tailwindcss": "3.4.3",
"typescript": "~5.4",
"xast-util-to-xml": "4.0.0",
"xml-js": "1.6.11",
"zod": "3.22.4"
},
"devDependencies": {
"@testing-library/jest-dom": "6.4.1",
"@testing-library/react": "14.2.1",
"@testing-library/react-hooks": "8.0.1",
"@types/jest": "29.5.11",
"@types/node": "20.12.2",
"@types/react": "18.2.51",
"@types/unist": "3.0.2",
"@types/xast": "2.0.4",
"@typescript-eslint/eslint-plugin": "6.20.0",
"@typescript-eslint/parser": "6.20.0",
"eslint": "8.55.0",
"eslint-config-next": "14.1.0",
"eslint-config-prettier": "9.0.0",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"lint-staged": "15.2.1",
"node-libxml": "5.0.1",
"prettier": "3.2.4",
"prettier-plugin-prisma": "5.0.0",
"prettier-plugin-tailwindcss": "0.5.14",
"ts-jest": "29.1.2",
"tsx": "4.6.1"
},
"overrides": {
"xast-util-to-xml": {
"@types/xast": "2.0.0"
}
},
"private": true
}