-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
131 lines (130 loc) · 3.89 KB
/
package.json
File metadata and controls
131 lines (130 loc) · 3.89 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
128
129
130
131
{
"name": "@mxenabled/connect-widget",
"description": "A simple ui library for React",
"version": "0.0.0-semantic-release",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/mxenabled/connect-widget.git"
},
"files": [
"/dist"
],
"publishConfig": {
"access": "public"
},
"overrides": {
},
"scripts": {
"dev": "vite build --watch",
"build": "tsc && vite build && npm run logBuildDate",
"lint": "eslint . --ext ts,tsx,js,jsx,md --report-unused-disable-directives --max-warnings 14",
"preview": "vite preview",
"prepare": "husky",
"test": "vitest run",
"watch": "vitest",
"i18n": "node scripts/i18n.js",
"logBuildDate": "echo 'Last build: '$(date \"+%c\") | tee ./dist/lastBuild.txt",
"testAndBuild": "npm run test && npm run build",
"publish:patch": "npm run testAndBuild && npm version patch && git push && git push origin --tags && npm publish",
"publish:minor": "npm run testAndBuild && npm version minor && git push && git push origin --tags && npm publish",
"publish:major": "npm run testAndBuild && npm version major && git push && git push origin --tags && npm publish"
},
"dependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@kyper/button": "^4.0.0",
"@kyper/hooks": "^1.0.0",
"@kyper/icon": "^1.18.1",
"@kyper/input": "^6.1.0",
"@kyper/institutionlogo": "^3.1.0",
"@kyper/messagebox": "^3.1.0",
"@kyper/progressindicators": "^3.1.0",
"@kyper/select": "^2.0.0",
"@kyper/selectionbox": "^2.1.0",
"@kyper/tag": "^3.0.0",
"@kyper/tokenprovider": "^4.0.1",
"@kyper/userfeedback": "^2.0.0",
"@kyper/utilityrow": "^2.1.0",
"@mui/icons-material": "^6.1.5",
"@mui/material": "^6.1.5",
"@mxenabled/mxui": "^1.5.4",
"@reduxjs/toolkit": "^2.2.7",
"@types/node": "^22.1.0",
"axios": "^1.8.4",
"bowser": "^2.11.0",
"date-fns": "^4.1.0",
"dompurify": "^3.2.4",
"focus-trap-react": "^10.2.3",
"gettext.js": "^2.0.3",
"js-sha256": "^0.11.0",
"lodash": "^4.17.21",
"numeral": "^2.0.6",
"react": "^18.3.1",
"react-confetti": "^6.1.0",
"react-dom": "^18.3.1",
"react-redux": "^9.1.2",
"rxjs": "^7.8.1",
"uuid": "^11.1.0",
"velocity-animate": "^1.5.2",
"vite-plugin-dts": "^4.0.0-beta.2"
},
"devDependencies": {
"@mx-cartographer/kyper-mui": "^2.2.0-alpha1",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.4.8",
"@testing-library/react": "^16.0.0",
"@testing-library/user-event": "^14.5.2",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8.56.1",
"@typescript-eslint/parser": "^8.56.1",
"@vitejs/plugin-react": "^4.3.1",
"colors": "^1.4.0",
"commander": "^14.0.0",
"commitizen": "^4.3.1",
"cz-conventional-changelog": "^3.3.0",
"esbuild": "^0.27.3",
"eslint": "^8.57.1",
"eslint-config-mx": "^4.0.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react": "^7.35.0",
"eslint-plugin-react-refresh": "^0.4.7",
"eslint-plugin-vitest-globals": "^1.5.0",
"husky": "^9.1.4",
"jsdom": "^24.1.1",
"lint-staged": "^15.2.8",
"markdown-eslint-parser": "^1.2.1",
"prettier": "3.7.4",
"rollup": "^4.59.0",
"semantic-release": "^25.0.3",
"typescript": "^5.2.2",
"typescript-eslint": "^8.56.1",
"vite": "^7.3.1",
"vite-plugin-svgr": "^4.2.0",
"vitest": "^3.1.4"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": [
"npm run lint",
"npx prettier . --write"
]
},
"volta": {
"node": "24.14.0",
"npm": "11.9.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"release": {
"branches": [
"master"
]
}
}