refactor: edit tailwindcss classes and change code formatting, therefore added .prettierrc file

fix: frontend bug where the passwords won't be checked when the password is changed
This commit is contained in:
2026-07-08 14:56:43 +02:00
parent 9c50c3f300
commit 6be34c93aa
36 changed files with 1280 additions and 1145 deletions
+13 -5
View File
@@ -2,16 +2,24 @@
"name": "@stockhome/shared",
"private": true,
"version": "1.0.0",
"type": "commonjs",
"type": "module",
"scripts": {
"prebuild": "barrelsby --directory src --delete --single",
"build": "tsc -b",
"build:esm": "tsc -p tsconfig.esm.json",
"build:cjs": "tsc -p tsconfig.cjs.json",
"build": "npm run prebuild && npm run build:esm && npm run build:cjs",
"lint": "eslint ."
},
"main": "./dist/src/index.js",
"types": "./dist/src/index.d.ts",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
}
},
"types": "./dist/types/index.d.ts",
"devDependencies": {
"barrelsby": "^2.8.1",
"typescript": "~6.0.2"
}
}
}