-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
84 lines (84 loc) · 2.94 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
{
"name": "brc-analytics",
"version": "0.5.1",
"private": true,
"scripts": {
"dev": "./scripts/dev.sh brc-analytics && ./scripts/set-version.sh dev && next dev",
"build:local": "./scripts/build.sh brc-analytics local && ./scripts/set-version.sh && next build",
"build:dev": "./scripts/build.sh brc-analytics dev && ./scripts/set-version.sh && next build",
"build:prod": "./scripts/build.sh brc-analytics prod && ./scripts/set-version.sh && next build",
"start": "npx serve out",
"lint": "next lint --dir .",
"check-format": "prettier --check .",
"format": "prettier --write . --cache",
"prepare": "husky",
"test": "jest --runInBand",
"build-brc-db": "esrun catalog/build/ts/build-catalog.ts",
"build-files-from-ncbi": "python3 ./catalog/build/py/build-files-from-ncbi.py",
"gen-schema": "./catalog/schema/scripts/gen-schema.sh",
"test-gen-python": "./catalog/schema/scripts/test-gen-python.sh",
"validate-catalog": "./catalog/schema/scripts/validate-catalog.sh"
},
"dependencies": {
"@databiosphere/findable-ui": "^21.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",
"@tanstack/react-table": "^8.19.2",
"copy-to-clipboard": "^3.3.1",
"ky": "^1.7.2",
"next": "^14.1.0",
"next-compose-plugins": "^2.2.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-window": "1.8.9",
"uuid": "8.3.2",
"validate.js": "^0.13.1"
},
"devDependencies": {
"@babel/core": "^7.17.10",
"@commitlint/cli": "^19.6.0",
"@commitlint/config-conventional": "^19.6.0",
"@mui/types": "^7.2.18",
"@next/eslint-plugin-next": "^15.0.4",
"@playwright/test": "^1.49.1",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^16.0.1",
"@types/mdx": "^2.0.11",
"@types/node": "20.10.0",
"@types/react": "^18.3.5",
"@types/react-dom": "^18.3.0",
"@types/react-table": "^7.7.12",
"@types/uuid": "8.3.4",
"@typescript-eslint/eslint-plugin": "^8.18.0",
"babel-loader": "^9.2.1",
"csv-parse": "^5.6.0",
"eslint": "^8.57.1",
"eslint-config-next": "^15.0.4",
"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.1.0",
"eslint-plugin-sonarjs": "^3.0.1",
"eslint-plugin-sort-destructure-keys": "^2.0.0",
"eslint-plugin-typescript-sort-keys": "^3.3.0",
"esrun": "^3.2.26",
"gray-matter": "^4.0.3",
"husky": "^9.1.7",
"jest": "^29.4.1",
"jest-environment-jsdom": "^29.4.1",
"next-mdx-remote": "^4.2.0",
"prettier": "^3.4.2",
"prettier-plugin-organize-imports": "^4.1.0",
"typescript": "^5.7.2",
"yaml": "^2.7.0"
},
"engines": {
"node": "20.10.0"
}
}