-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
78 lines (78 loc) · 2.69 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
{
"name": "next",
"version": "2.2.0",
"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 install ./.husky",
"complete-biccn-publications": "esrun ./scripts/complete-biccn-publications.ts",
"get-cellxgene-projects": "esrun ./scripts/get-cellxgene-projects.ts"
},
"dependencies": {
"@databiosphere/findable-ui": "15.0.2",
"@emotion/react": "^11.13.3",
"@emotion/styled": "^11.13.0",
"@mdx-js/loader": "^3.0.1",
"@mdx-js/react": "^3.0.1",
"@mui/icons-material": "^6.1.5",
"@mui/material": "^6.1.5",
"@next/mdx": "^14.1.0",
"@tanstack/react-table": "^8.19.2",
"gray-matter": "^4.0.3",
"isomorphic-dompurify": "0.24.0",
"next": "^14.1.0",
"next-compose-plugins": "^2.2.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-dropzone": "^14.2.3",
"react-gtm-module": "2.0.11",
"uuid": "8.3.2",
"validate.js": "^0.13.1"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@digitak/esrun": "^3.2.25",
"@mui/types": "^7.2.18",
"@next/eslint-plugin-next": "^14.1.0",
"@types/mdx": "^2.0.11",
"@types/node": "^20.10.0",
"@types/react": "^18.3.5",
"@types/react-dom": "^18.3.0",
"@types/react-gtm-module": "^2.0.1",
"@types/react-table": "^7.7.12",
"@types/uuid": "8.3.4",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"commitlint": "^19.5.0",
"eslint": "^8.33.0",
"eslint-config-next": "^14.2.13",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-jsdoc": "^48.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-sonarjs": "^0.18.0",
"eslint-plugin-sort-destructure-keys": "^1.4.0",
"eslint-plugin-typescript-sort-keys": "^3.2.0",
"got": "^13.0.0",
"husky": "^8.0.3",
"next-mdx-remote": "^4.4.1",
"next-sitemap": "^4.2.3",
"prettier": "^2.8.3",
"prettier-plugin-organize-imports": "^3.2.2",
"remark-gfm": "^3.0.1",
"slugify": "^1.6.6",
"typescript": "^5.5.4"
},
"engines": {
"node": "20.10.0"
}
}