-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathpackage.json
77 lines (77 loc) · 2.57 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
{
"private": true,
"name": "@oxygen-ui/multi-brand-identity-example",
"version": "2.2.0",
"description": "Sample app to showcase Oxygen Design System multi-branding capabilities.",
"author": "WSO2",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/wso2/oxygen/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/wso2/oxygen",
"directory": "examples/multi-brand-identity"
},
"keywords": [
"oxygen-ui",
"oxygen-ui-samples",
"multi-brand",
"branding"
],
"scripts": {
"start": "DISABLE_ESLINT_PLUGIN=true react-scripts start",
"build": "DISABLE_ESLINT_PLUGIN=true react-scripts build",
"lint": "pnpm lint:es && pnpm lint:styles",
"lint:es": "eslint . --ext .js,.jsx,.ts,.tsx",
"lint:styles": "stylelint 'src/**/*.{css,scss,sass}' --config stylelint.config.cjs --allow-empty-input",
"eject": "react-scripts eject",
"test": "NODE_OPTIONS=--experimental-vm-modules pnpm jest --passWithNoTests",
"typecheck": "tsc --noemit -p tsconfig.json"
},
"dependencies": {
"@fontsource/inter": "^4.5.14",
"@fontsource/montserrat": "^4.5.13",
"@oxygen-ui/primitives": "workspace:*",
"@oxygen-ui/react": "workspace:../../packages/react/dist",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^29.2.3",
"@types/node": "^16.18.3",
"@types/react": "^18.0.25",
"@types/react-dom": "^18.0.9",
"@types/testing-library__jest-dom": "^5.14.5",
"@wso2/eslint-plugin": "https://gitpkg.now.sh/brionmario/wso2-ui-configs/packages/eslint-plugin?b21bbbd7379ab3b7315d7d9478dbd88c0bf11241",
"@wso2/prettier-config": "https://gitpkg.now.sh/brionmario/wso2-ui-configs/packages/prettier-config?b21bbbd7379ab3b7315d7d9478dbd88c0bf11241",
"@wso2/stylelint-config": "https://gitpkg.now.sh/brionmario/wso2-ui-configs/packages/stylelint-config?b21bbbd7379ab3b7315d7d9478dbd88c0bf11241",
"eslint": "8.25.0",
"jest": "29.0.3",
"jest-environment-jsdom": "^29.4.1",
"prettier": "^2.8.0",
"react-scripts": "5.0.1",
"stylelint": "^15.1.0",
"ts-jest": "^29.0.3",
"typescript": "^4.9.3",
"web-vitals": "^2.1.4"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"publishConfig": {
"access": "restricted"
}
}