Files
OpenNoodl/package.json

62 lines
2.8 KiB
JSON

{
"private": true,
"name": "@thelowcodefoundation/repo",
"ts-node": {
"compilerOptions": {
"module": "CommonJS"
}
},
"description": "Low-code for when experience matter",
"author": "The Low Code Foundation <contact@thelowcodefoundation.com>",
"homepage": "https://learn-noodl.com",
"version": "1.1.0",
"workspaces": [
"packages/*"
],
"scripts": {
"clean:all": "rimraf node_modules/.cache packages/*/node_modules/.cache .eslintcache packages/*/.eslintcache && echo '✓ All caches cleared. On macOS, Electron cache at ~/Library/Application Support/Noodl/ should be manually cleared if issues persist.'",
"health:check": "node scripts/health-check.js",
"graph": "npx nx graph",
"ci:prepare:editor": "ts-node -P ./scripts/tsconfig.json ./scripts/ci-editor-prepare.ts",
"ci:build:viewer": "lerna exec --scope @noodl/noodl-viewer-react -- npm run build",
"ci:build:editor": "lerna exec --scope noodl-editor -- npm run ci:build",
"build:editor": "ts-node -P ./scripts/tsconfig.json ./scripts/build-editor.ts",
"build:editor:_viewer": "ts-node -P ./scripts/tsconfig.json ./scripts/noodl-editor/build-viewer.ts",
"build:editor:_editor": "ts-node -P ./scripts/tsconfig.json ./scripts/noodl-editor/build-editor.ts",
"build:editor:pack": "ts-node -P ./scripts/tsconfig.json ./scripts/build-pack.ts",
"build:cloud-runtime": "lerna run build --scope @noodl/cloud-runtime --stream && lerna run build:pack --scope @noodl/cloud-runtime --stream",
"start:storybook": "lerna exec --scope @noodl/noodl-core-ui -- npm run start",
"start:viewer": "lerna run start --scope @noodl/noodl-viewer-react --stream",
"start:editor": "lerna run start --scope noodl-editor --stream",
"dev": "ts-node -P ./scripts/tsconfig.json ./scripts/start.ts",
"start": "ts-node -P ./scripts/tsconfig.json ./scripts/start.ts -- --build-viewer",
"test:editor": "ts-node -P ./scripts/tsconfig.json ./scripts/test-editor.ts",
"test:platform": "lerna exec --scope @noodl/platform-node -- npm test",
"typecheck": "tsc --noEmit",
"typecheck:core-ui": "tsc -p packages/noodl-core-ui --noEmit",
"typecheck:editor": "tsc -p packages/noodl-editor --noEmit",
"typecheck:viewer": "tsc -p packages/noodl-viewer-react --noEmit"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^3.7.2",
"@types/keyv": "3.1.4",
"@types/node": "^18.19.123",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"eslint": "^8.57.1",
"eslint-plugin-react": "^7.37.5",
"fs-extra": "^10.1.0",
"lerna": "^7.4.2",
"rimraf": "^3.0.2",
"ts-node": "^10.9.2",
"typescript": "^5.9.3",
"webpack": "^5.101.3",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.2"
},
"engines": {
"npm": ">=6.0.0",
"node": ">=16.0.0"
}
}