reinit repo with sources from zipped dir

This commit is contained in:
Louis
2025-11-21 09:35:47 +01:00
parent 53580dd312
commit a2725828f5
82 changed files with 28056 additions and 0 deletions

71
package.json Normal file
View File

@@ -0,0 +1,71 @@
{
"name": "@klx/source",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"test:board": "nx test board",
"serve:board": "nx serve board",
"build:board": "nx build board",
"serve:admin": "nx serve admin",
"build:admin": "nx build admin",
"build:all": "nx run-many -t build"
},
"private": true,
"dependencies": {
"@emotion/react": "^11.14.0",
"@faker-js/faker": "^10.0.0",
"mobx": "^6.13.7",
"mobx-react-lite": "^4.1.1",
"react": "19.0.0",
"react-dom": "19.0.0",
"react-rnd": "^10.5.2",
"react-window": "^2.2.3"
},
"devDependencies": {
"@babel/core": "^7.14.5",
"@babel/preset-env": "^7.28.5",
"@babel/preset-react": "^7.14.5",
"@babel/preset-typescript": "^7.28.5",
"@eslint/js": "^9.8.0",
"@nx/eslint": "21.5.2",
"@nx/eslint-plugin": "21.5.2",
"@nx/jest": "21.5.2",
"@nx/js": "21.5.2",
"@nx/react": "21.5.2",
"@nx/rspack": "21.5.2",
"@nx/workspace": "21.5.2",
"@rspack/cli": "^1.5.0",
"@rspack/core": "^1.5.0",
"@rspack/dev-server": "^1.1.4",
"@rspack/plugin-react-refresh": "^1.0.0",
"@swc-node/register": "~1.9.1",
"@swc/cli": "~0.6.0",
"@swc/core": "~1.5.7",
"@swc/helpers": "~0.5.11",
"@types/jest": "^30.0.0",
"@types/node": "^20.0.0",
"@types/react": "19.0.0",
"@types/react-dom": "19.0.0",
"@types/react-window": "^1.8.8",
"babel-jest": "^30.2.0",
"eslint": "^9.8.0",
"eslint-config-prettier": "^10.0.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jsx-a11y": "6.10.1",
"eslint-plugin-react": "7.35.0",
"eslint-plugin-react-hooks": "5.0.0",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"nx": "21.5.2",
"prettier": "^2.6.2",
"react-refresh": "~0.14.0",
"ts-jest": "^29.4.5",
"tslib": "^2.3.0",
"typescript": "~5.9.2",
"typescript-eslint": "^8.40.0"
},
"workspaces": [
"apps/*",
"packages/*"
]
}