-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
83 lines (83 loc) · 2.91 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
{
"name": "the-anvil",
"description": "Inverting the model of genomic data sharing",
"version": "2.9.0",
"private": true,
"scripts": {
"dev": "./scripts/dev.sh anvil-portal && ./scripts/set-version.sh dev && next dev",
"build-dev:anvil-portal": "scripts/common-build.sh anvil-portal dev && ./scripts/set-version.sh && next build && npm run postbuild",
"build-prod:anvil-portal": "./scripts/common-build.sh anvil-portal prod && ./scripts/set-version.sh && next build && npm run postbuild",
"start": "npx serve out",
"lint": "next lint",
"check-format": "prettier --check .",
"postbuild": "next-sitemap --config next-sitemap.config.mjs",
"prepare": "husky install ./.husky",
"convert-cser-publications": "cd scripts && node convert-cser-publications.mjs",
"update-ingestion-chart": "cd scripts && node update-ingestion-chart.mjs",
"add-cser-materials": "esrun scripts/add-cser-materials.ts"
},
"dependencies": {
"@databiosphere/findable-ui": "16.0.0",
"@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",
"copy-to-clipboard": "3.3.1",
"echarts": "^5.3.3",
"echarts-for-react": "^3.0.2",
"gray-matter": "^4.0.3",
"isomorphic-dompurify": "0.24.0",
"moment-timezone": "^0.5.45",
"next": "^14.1.0",
"next-compose-plugins": "^2.2.1",
"next-mdx-remote": "^4.4.1",
"next-transpile-modules": "^10.0.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-gtm-module": "2.0.11",
"remark-gfm": "^3.0.1",
"slugify": "^1.6.6",
"uuid": "8.3.2"
},
"devDependencies": {
"@commitlint/cli": "^19.6.0",
"@commitlint/config-conventional": "^19.6.0",
"@digitak/esrun": "^3.2.26",
"@mui/types": "^7.2.18",
"@next/eslint-plugin-next": "^14.1.0",
"@types/jest": "^29.5.14",
"@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/uuid": "8.3.4",
"@typescript-eslint/eslint-plugin": "^8.17.0",
"csv-parse": "^5.6.0",
"eslint": "^8.33.0",
"eslint-config-next": "^15.0.3",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-jsdoc": "^50.6.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-sonarjs": "^3.0.0",
"eslint-plugin-sort-destructure-keys": "^2.0.0",
"eslint-plugin-typescript-sort-keys": "^3.3.0",
"got": "^14.4.5",
"husky": "^9.1.7",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"next-sitemap": "^4.2.3",
"prettier": "^3.4.1",
"prettier-plugin-organize-imports": "^4.1.0",
"ts-jest": "^29.2.5",
"typescript": "^5.7.2"
},
"engines": {
"node": "20.10.0"
}
}