-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.83 KB
/
Copy pathpackage.json
File metadata and controls
92 lines (92 loc) · 2.83 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
{
"name": "integration-store",
"version": "1.0.0",
"private": true,
"homepage": ".",
"description": "WSO2 Integration Store - A web application for browsing and discovering Ballerina connectors",
"engines": {
"node": ">=18"
},
"scripts": {
"dev": "DISABLE_ESLINT_PLUGIN=true react-app-rewired start",
"start": "DISABLE_ESLINT_PLUGIN=true react-app-rewired start",
"build": "DISABLE_ESLINT_PLUGIN=true react-app-rewired build",
"prebuild": "sh scripts/prebuild.sh",
"generate-sitemap": "node scripts/generate-sitemap.js",
"test": "react-app-rewired test",
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"license": "ISC",
"dependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@mui/icons-material": "^7.3.6",
"@mui/material": "^7.3.7",
"@wso2/oxygen-ui": "^0.2.1",
"@wso2/oxygen-ui-icons-react": "^0.2.1",
"ajv": "^8.17.1",
"lightgallery": "^2.9.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-lazy-load-image-component": "^1.6.3",
"react-markdown": "^10.1.0",
"react-router-dom": "^6.30.2",
"react-scripts": "^5.0.1",
"rehype-raw": "^7.0.0",
"rehype-sanitize": "^6.0.0",
"remark-gfm": "^4.0.1",
"semver": "^7.7.3",
"typescript": "^5.9.3"
},
"devDependencies": {
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/jest": "^30.0.0",
"@types/node": "^25.0.2",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"@types/react-lazy-load-image-component": "^1.6.5",
"@types/react-router-dom": "^5.3.3",
"eslint": "^9.27.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"jest-environment-jsdom": "^30.2.0",
"prettier": "^3.7.4",
"react-app-rewired": "^2.2.1",
"typescript-eslint": "^8.32.1"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"overrides": {
"glob": "^10.3.10",
"rimraf": "^5.0.5",
"inflight": "npm:@aashutoshrathi/inflight@^1.0.3",
"rollup-plugin-terser": "npm:@rollup/plugin-terser@^0.4.4",
"sourcemap-codec": "npm:@jridgewell/sourcemap-codec@^1.4.15",
"svgo": "^3.2.0"
},
"jest": {
"moduleNameMapper": {
"^@/(.*)$": "<rootDir>/src/$1",
"^@wso2/oxygen-ui$": "<rootDir>/src/__mocks__/@wso2/oxygen-ui.js",
"^@wso2/oxygen-ui-icons-react$": "<rootDir>/node_modules/@wso2/oxygen-ui-icons-react/dist/index.cjs"
}
}
}