mirror of
https://github.com/enso-org/enso.git
synced 2024-11-30 17:44:58 +03:00
d11745a205
- Closes #7498 - Validation regex previously disallowed non-ASCII characters, now fixed - Changes every password input to use the correct regex. For old/new passwords, it uses the regular input. For password confirmations, it uses the new password, converted to a regex. This makes it so that the password confirmation input's validation only succeeds when it exactly matches the new password. # Important Notes None
46 lines
1.2 KiB
JSON
46 lines
1.2 KiB
JSON
{
|
|
"name": "enso-dashboard",
|
|
"version": "0.1.0",
|
|
"type": "module",
|
|
"private": true,
|
|
"scripts": {
|
|
"typecheck": "tsc --noEmit",
|
|
"lint": "npx --yes eslint src",
|
|
"build": "tsx bundle.ts",
|
|
"watch": "tsx watch.ts",
|
|
"start": "tsx start.ts",
|
|
"test": "tsx test.ts"
|
|
},
|
|
"dependencies": {
|
|
"@heroicons/react": "^2.0.15",
|
|
"@types/node": "^16.18.11",
|
|
"@types/react": "^18.0.27",
|
|
"@types/react-dom": "^18.0.10",
|
|
"esbuild": "^0.17.15",
|
|
"esbuild-plugin-time": "^1.0.0",
|
|
"react": "^18.2.0",
|
|
"react-dom": "^18.2.0",
|
|
"react-router-dom": "^6.7.0"
|
|
},
|
|
"devDependencies": {
|
|
"@esbuild-plugins/node-modules-polyfill": "^0.2.2",
|
|
"@typescript-eslint/eslint-plugin": "^5.49.0",
|
|
"@typescript-eslint/parser": "^5.49.0",
|
|
"chalk": "^5.3.0",
|
|
"enso-authentication": "^1.0.0",
|
|
"enso-chat": "git://github.com/enso-org/enso-bot",
|
|
"enso-content": "^1.0.0",
|
|
"eslint": "^8.32.0",
|
|
"eslint-plugin-jsdoc": "^39.6.8",
|
|
"eslint-plugin-react": "^7.32.1",
|
|
"react-toastify": "^9.1.3",
|
|
"tailwindcss": "^3.2.7",
|
|
"typescript": "^4.9.4"
|
|
},
|
|
"optionalDependencies": {
|
|
"@esbuild/darwin-x64": "^0.17.15",
|
|
"@esbuild/linux-x64": "^0.17.15",
|
|
"@esbuild/windows-x64": "^0.17.15"
|
|
}
|
|
}
|