forked from uc-cdis/commons-frontend-app
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 4.26 KB
/
Copy pathpackage.json
File metadata and controls
99 lines (99 loc) · 4.26 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
92
93
94
95
96
97
98
99
{
"name": "@gen3/commons-portal-app-base",
"version": "0.12.44",
"private": "true",
"engines": {
"npm": ">=11.9.0",
"node": ">=24.15.0"
},
"scripts": {
"lint": "eslint .",
"lint-fix": "eslint . --fix",
"predev": " NODE_ENV=development npm run build:middlewarePaths",
"dev": "next dev --webpack",
"prebuild": "NODE_ENV=production npm run build:middlewarePaths",
"build": "next build --webpack",
"build:volume": "npm run build:middlewarePathsMatchAll && next build --webpack",
"start": "next start",
"setupCommons": "npm run buildColors && npm run getSchema && npm run getDRSToHostname && npm run buildIcons && npm run build:middlewarePaths",
"build:colors": "node ./node_modules/@gen3/toolsff/dist/buildColors.esm.js --themeFile=config/$npm_config_commons/colors.json --out=config/$npm_config_commons",
"build:icons": "node ./node_modules/@gen3/toolsff/dist/bundleIcons.esm.js --inpath=config/icons --outpath=config/icons",
"build:middlewarePaths": "if [ ! -f ./node_modules/@gen3/toolsff/dist/scanSitePaths.esm.js ]; then printf \"\\033[31mError: @gen3/toolsff not built (missing dist file). Run: npm run build:tools\\033[0m\\n\"; exit 1; else node ./node_modules/@gen3/toolsff/dist/scanSitePaths.esm.js || (printf \"\\033[31mError: @gen3/toolsff scanSitePaths failed. See above message\\033[0m\\n\" && exit 1); fi",
"build:middlewarePathsMatchAll": "if [ ! -f ./node_modules/@gen3/toolsff/dist/scanSitePaths.esm.js ]; then printf \"\\033[31mError: @gen3/toolsff not built (missing dist file). Run: npm run build:tools\\033[0m\\n\"; exit 1; else node ./node_modules/@gen3/toolsff/dist/scanSitePaths.esm.js --forceMatchAll || (printf \"\\033[31mError: @gen3/toolsff scanSitePaths failed. See above message\\033[0m\\n\" && exit 1); fi",
"getSchema": "node ./node_modules/@gen3/toolsff/dist/getSchema.esm.js --out=config/",
"getDRSToHostname": "node ./node_modules/@gen3/toolsff/dist/getDRSToHostname.esm.js --out=config/"
},
"dependencies": {
"@datadog/browser-rum": "^6.22.0",
"@fontsource/montserrat": "^5.2.8",
"@fontsource/poppins": "^5.2.7",
"@fontsource/source-sans-pro": "^5.2.5",
"@gen3/core": "0.12.44",
"@gen3/frontend": "0.12.44",
"@mantine/core": "^9.3.0",
"@mantine/dates": "^9.3.0",
"@mantine/form": "^9.3.0",
"@mantine/hooks": "^9.3.0",
"@mantine/modals": "^9.3.0",
"@mantine/notifications": "^9.3.0",
"@mdx-js/loader": "^3.1.1",
"@mdx-js/react": "^3.1.1",
"@next/mdx": "^16.2.7",
"idb": "^8.0.3",
"jsonpath-plus": "^10.3.0",
"lodash": "^4.17.23",
"mantine-react-table-open": "^9.0.3",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-icons": "^5.5.0",
"react-markdown": "^10.1.0",
"remark-gfm": "^4.0.1",
"tailwind-styled-components": "^2.2.0",
"use-deep-compare": "^1.3.0",
"victory": "^37.3.6"
},
"devDependencies": {
"@axe-core/react": "^4.10.2",
"@gen3/toolsff": "0.12.44",
"@graphiql/react": "^0.37.4",
"eslint": "^9.28.0",
"eslint-config-next": "16.2.6",
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/forms": "^0.5.10",
"@tailwindcss/line-clamp": "^0.4.4",
"@tailwindcss/typography": "^0.5.19",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@types/lodash": "^4.17.23",
"@types/mdx": "^2.0.13",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@typescript-eslint/eslint-plugin": "^8.46.1",
"@typescript-eslint/parser": "^8.46.1",
"autoprefixer": "^10.4.21",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.0",
"graphiql": "^5.2.3",
"jest-fixed-jsdom": "^0.0.10",
"msw": "^2.11.5",
"next": "^16.2.7",
"postcss": "^8.5.6",
"postcss-import": "^16.1.1",
"postcss-loader": "^8.2.0",
"postcss-modules": "^6.0.1",
"postcss-preset-env": "^10.4.0",
"postcss-preset-mantine": "^1.18.0",
"prettier": "^3.6.2",
"sharp": "^0.34.4",
"swr": "^2.3.6",
"tailwindcss": "^3.4.18",
"ts-jest": "^29.4.5",
"ts-node": "^10.9.2",
"typescript": "^5.9.3",
"typescript-eslint": "^8.46.1"
}
}