-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
114 lines (114 loc) · 3.61 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
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
{
"name": "gen3-frontend-framework",
"version": "0.10.63",
"description": "The Gen3 Frontend Framework mono repo for Gen 3.2 development",
"private": true,
"workspaces": [
"packages/core",
"packages/frontend",
"packages/tools",
"packages/sampleCommons"
],
"engines": {
"npm": ">=10.2.3",
"node": ">=20.11.0"
},
"scripts": {
"lint": "lerna run lint",
"lint-fix": "eslint . --fix",
"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": "lerna run dev",
"dev:watch": " lerna watch -- lerna run dev --scope=\\$LERNA_PACKAGE_NAME",
"start": "lerna run start",
"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",
"isomorphic-fetch": "^3.0.0",
"jsonpath-plus": "^10.2.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",
"@next/eslint-plugin-next": "^14.2.8",
"@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",
"autoprefixer": "^10.4.20",
"eslint": "8.57.0",
"eslint-config-next": "^14.2.15",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-jsx-a11y": "^6.10.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.36.1",
"eslint-plugin-react-hooks": "^4.6.2",
"jest": "^29.7.0",
"jest-canvas-mock": "^2.5.2",
"jest-environment-jsdom": "^29.7.0",
"lerna": "^8.1.8",
"nx": "19.4.3 ",
"oxlint": "^0.9.8",
"postcss-import": "^16.1.0",
"postcss-modules": "^6.0.0",
"postcss-preset-mantine": "^1.17.0",
"prettier": "^3.3.3",
"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"
},
"overrides": {
"rollup-plugin-copy": {
"globby": "^11.0.0"
}
},
"optionalDependencies": {
"@nx/nx-darwin-arm64": "^20.3.0",
"@nx/nx-linux-arm64-gnu": "^20.3.0",
"@nx/nx-linux-x64-gnu": "^20.3.0"
}
}