forked from uc-cdis/gen3-frontend-framework
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
127 lines (127 loc) · 4.18 KB
/
Copy pathpackage.json
File metadata and controls
127 lines (127 loc) · 4.18 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "gen3-frontend-framework",
"version": "0.11.16",
"description": "The Gen3 Frontend Framework mono repo for Gen 3.2 development",
"private": true,
"workspaces": [
"packages/core",
"packages/frontend",
"packages/storybook",
"packages/tools",
"packages/sampleCommons"
],
"engines": {
"npm": ">=10.2.3",
"node": ">=22.11.0"
},
"scripts": {
"lint": "lerna run lint",
"lint-fix": "eslint . --fix",
"lint:config": "npx @eslint/config-inspector@latest",
"oxlint": "oxlint .",
"build": "lerna run build --include-dependencies --stream",
"build:pkg": "lerna run build --include-dependencies --stream --ignore=@gen3/samplecommons",
"build:clean": "lerna run build:clean",
"compile": "lerna run compile",
"dev": "NODE_OPTIONS='--max_old_space_size=4096' lerna run dev",
"dev:watch": "lerna watch -- lerna run dev --scope=\\$LERNA_PACKAGE_NAME --include-dependencies",
"dev:app": "lerna run dev --scope=@gen3/samplecommons",
"start": "lerna run start",
"storybook": "lerna run storybook --scope @gen3/storybook",
"build:start": "npm run build && npm run start",
"setProxy": "(cd ./packages/tools/localDev/nginx/; ./configureNginx.sh -d $npm_config_domain)",
"test": "npm run test --workspaces",
"test:int": "npm run test:int --workspaces",
"test:all": "npm run test:all --workspaces"
},
"keywords": [],
"author": "",
"license": "Apache-2.0",
"dependencies": {
"@grafana/faro-react": "^1.9.1",
"@grafana/faro-web-sdk": "^1.9.1",
"@grafana/faro-web-tracing": "^1.9.1",
"@mantine/core": "^7.16.0",
"@mantine/dates": "^7.16.0",
"@mantine/form": "^7.16.0",
"@mantine/hooks": "^7.16.0",
"@mantine/modals": "^7.16.0",
"@mantine/notifications": "^7.16.0",
"classnames": "^2.3.1",
"colorette": "^2.0.20",
"cookies-next": "4.3.0",
"idb": "^8.0.3",
"isomorphic-fetch": "^3.0.0",
"jsonpath-plus": "10.3.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-responsive-carousel": "^3.2.23",
"url-join": "^5.0.0"
},
"devDependencies": {
"@axe-core/react": "^4.10.0",
"@eslint/js": "^9.28.0",
"@next/eslint-plugin-next": "^15.3.3",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.0",
"@swc/cli": "^0.5.0",
"@swc/core": "^1.7.28",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.1.2",
"@types/jest": "^29.5.13",
"@types/node": "22.7.2",
"@types/react": "^18.3.18",
"@typescript-eslint/eslint-plugin": "^8.7.0",
"@typescript-eslint/parser": "^8.7.0",
"@welldone-software/why-did-you-render": "^8.0.3",
"autoprefixer": "^10.4.20",
"eslint": "^9.28.0",
"eslint-config-next": "^15.3.3",
"eslint-config-prettier": "^10.0.2",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prettier": "^5.4.1",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.1.0",
"globals": "^16.0.0",
"jest": "^29.7.0",
"jest-canvas-mock": "^2.5.2",
"jest-environment-jsdom": "^29.7.0",
"lerna": "^8.1.8",
"msw": "^2.7.3",
"nx": "19.4.3 ",
"oxlint": "^0.16.4",
"postcss-import": "^16.1.0",
"postcss-modules": "^6.0.0",
"postcss-preset-mantine": "^1.17.0",
"prettier": "^3.6.2",
"rollup": "^4.22.4",
"rollup-plugin-copy": "^3.5.0",
"rollup-plugin-dts": "^6.1.1",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-swc3": "^0.11.2",
"rollup-swc-preserve-directives": "^0.7.0",
"terser-webpack-plugin": "^5.3.10",
"ts-jest": "^29.2.5",
"ts-json-schema-generator": "^2.3.0",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"typescript": "^5.6.2",
"typescript-eslint": "^8.26.0"
},
"overrides": {
"rollup-plugin-copy": {
"globby": "^11.0.0"
}
},
"optionalDependencies": {
"@nx/nx-darwin-arm64": "^20.7.1",
"@nx/nx-linux-arm64-gnu": "^20.7.1",
"@nx/nx-linux-x64-gnu": "^20.7.1",
"@swc/core-linux-x64-gnu": "^1.11.10",
"@swc/nx-darwin-arm64": "^1.11.10",
"@swc/nx-linux-arm64-gnu": "^1.11.10"
}
}