-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.91 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.91 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
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "next",
"version": "2.9.2",
"private": true,
"scripts": {
"dev": "./scripts/dev.sh data-portal && ./scripts/set-version.sh dev && next dev",
"build-dev:data-portal": "./scripts/common-build.sh data-portal dev && ./scripts/set-version.sh && next build && npm run postbuild",
"build-prod:data-portal": "./scripts/common-build.sh data-portal prod && ./scripts/set-version.sh && next build && npm run postbuild",
"build": "next build",
"start": "npx serve out",
"lint": "next lint",
"check-format": "prettier --check .",
"format": "prettier --write .",
"postbuild": "next-sitemap --config next-sitemap.config.mjs",
"prepare": "husky",
"complete-biccn-publications": "esrun ./scripts/complete-biccn-publications.ts",
"get-cellxgene-projects": "esrun ./scripts/get-cellxgene-projects.ts"
},
"dependencies": {
"@databiosphere/findable-ui": "^50.8.0",
"@emotion/react": "^11",
"@emotion/styled": "^11",
"@mdx-js/loader": "^3.0.1",
"@mdx-js/react": "^3.0.1",
"@mui/icons-material": "^7",
"@mui/material": "^7",
"@next/mdx": "^15",
"@observablehq/plot": "^0.6.17",
"@tanstack/match-sorter-utils": "^8",
"@tanstack/react-table": "^8",
"@tanstack/react-virtual": "^3",
"copy-to-clipboard": "^3",
"gray-matter": "^4",
"isomorphic-dompurify": "^2",
"ky": "^1",
"next": "^15",
"next-auth": "^4",
"next-compose-plugins": "^2.2.1",
"next-mdx-remote": "^5",
"react": "^19",
"react-dom": "^19",
"react-dropzone": "^14",
"react-gtm-module": "^2",
"react-idle-timer": "^5",
"react-window": "^1",
"rehype-raw": "^7",
"rehype-react": "^8",
"rehype-sanitize": "^6",
"remark-gfm": "^4",
"remark-parse": "^11",
"remark-rehype": "^11",
"slugify": "^1",
"unified": "^11",
"uuid": "^13",
"yup": "^1"
},
"devDependencies": {
"@commitlint/cli": "^20.2.0",
"@commitlint/config-conventional": "^20.2.0",
"@digitak/esrun": "^3.2.26",
"@next/eslint-plugin-next": "^15.5.9",
"@types/mdx": "^2.0.11",
"@types/node": "^22.12.0",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@types/react-gtm-module": "^2.0.1",
"@typescript-eslint/eslint-plugin": "^8.50.0",
"eslint": "^8.57.1",
"eslint-config-next": "^15.5.9",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-jsdoc": "^61.5.0",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-sonarjs": "^4.0.2",
"eslint-plugin-sort-destructure-keys": "^2.0.0",
"eslint-plugin-typescript-sort-keys": "^3.3.0",
"got": "^14.4.5",
"husky": "^9.1.7",
"next-sitemap": "^4.2.3",
"prettier": "^3.7.4",
"prettier-plugin-organize-imports": "^4.3.0",
"typescript": "^5.9.3"
},
"overrides": {
"glob": "^11.0.4"
},
"engines": {
"node": "22.12.0"
}
}