feat(planning): grille hebdomadaire complète avec API et filtres
- Connexion API via proxy Angular (résolution CORS, base path /api) - Import CSS ng-zorro global pour les modales et composants - Filtres Camion/Show câblés sur l'affichage de la grille - Camions affichés via TrucksService (linkés au show du même créneau) - Panneau de détails : spectacles + camions du jour sélectionné - Modale de création de spectacle stylisée avec fond et centrage - Positionnement précis des events à la minute dans leur créneau - Auto-scroll vers l'heure courante au chargement - Ligne "maintenant" sur la colonne du jour actuel - Régénération des services OpenAPI (nouveaux noms de types) Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
+45
-87
@@ -1,36 +1,19 @@
|
||||
{
|
||||
"name": "is-what",
|
||||
"version": "4.1.16",
|
||||
"description": "JS type check (TypeScript supported) functions like `isPlainObject() isArray()` etc. A simple & small integration.",
|
||||
"type": "module",
|
||||
"sideEffects": false,
|
||||
"types": "./dist/index.d.ts",
|
||||
"module": "./dist/index.js",
|
||||
"main": "./dist/index.js",
|
||||
"exports": {
|
||||
".": {
|
||||
"require": {
|
||||
"types": "./dist/cjs/index.d.cts",
|
||||
"default": "./dist/cjs/index.cjs"
|
||||
},
|
||||
"import": {
|
||||
"types": "./dist/index.d.ts",
|
||||
"default": "./dist/index.js"
|
||||
}
|
||||
}
|
||||
},
|
||||
"files": [
|
||||
"dist"
|
||||
],
|
||||
"engines": {
|
||||
"node": ">=12.13"
|
||||
},
|
||||
"version": "3.14.1",
|
||||
"description": "JS type check (TypeScript supported) functions like `isPlainObject() isArray()` etc. A simple & small integration.",
|
||||
"main": "dist/index.cjs.js",
|
||||
"module": "dist/index.esm.js",
|
||||
"typings": "types/index.d.ts",
|
||||
"scripts": {
|
||||
"test": "vitest run",
|
||||
"lint": "tsc --noEmit && eslint ./src --ext .ts",
|
||||
"build": "rollup -c ./rollup.config.js",
|
||||
"build:docs": "typedoc",
|
||||
"release": "npm run lint && del dist && npm run build && np"
|
||||
"test": "ava",
|
||||
"jest": "jest",
|
||||
"jest-w": "jest --watchAll",
|
||||
"lint": "tsc --noEmit src/index.ts && eslint . --ext .js,.jsx,.ts,.tsx",
|
||||
"rollup": "rollup -c ./build.js",
|
||||
"build": "rimraf types && rimraf dist && npm run lint && npm run rollup && npm run test && npm run jest",
|
||||
"release": "npm run build && np"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
@@ -58,71 +41,46 @@
|
||||
"is-plain-object"
|
||||
],
|
||||
"author": "Luca Ban - Mesqueeb",
|
||||
"funding": "https://github.com/sponsors/mesqueeb",
|
||||
"license": "MIT",
|
||||
"bugs": {
|
||||
"url": "https://github.com/mesqueeb/is-what/issues"
|
||||
},
|
||||
"homepage": "https://github.com/mesqueeb/is-what#readme",
|
||||
"devDependencies": {
|
||||
"@typescript-eslint/eslint-plugin": "^5.62.0",
|
||||
"@typescript-eslint/parser": "^5.62.0",
|
||||
"del-cli": "^5.1.0",
|
||||
"eslint-config-prettier": "^8.10.0",
|
||||
"eslint-plugin-tree-shaking": "^1.10.1",
|
||||
"eslint": "^8.52.0",
|
||||
"np": "^8.0.4",
|
||||
"prettier-plugin-jsdoc": "^0.4.2",
|
||||
"prettier": "^2.8.8",
|
||||
"rollup-plugin-dts": "^5.3.1",
|
||||
"rollup-plugin-esbuild": "^5.0.0",
|
||||
"rollup": "^3.29.4",
|
||||
"typedoc": "^0.25.2",
|
||||
"typescript": "^5.2.2",
|
||||
"vitest": "^0.34.6"
|
||||
"@babel/core": "^7.12.17",
|
||||
"@types/babel-core": "^6.25.6",
|
||||
"@types/jest": "^26.0.20",
|
||||
"@typescript-eslint/eslint-plugin": "^4.15.1",
|
||||
"@typescript-eslint/parser": "^4.15.1",
|
||||
"ava": "^3.15.0",
|
||||
"babel-core": "^7.0.0-bridge.0",
|
||||
"babel-jest": "^26.6.3",
|
||||
"babel-preset-env": "^1.7.0",
|
||||
"eslint": "^7.20.0",
|
||||
"eslint-config-prettier": "^7.2.0",
|
||||
"eslint-plugin-tree-shaking": "^1.8.0",
|
||||
"jest": "^26.6.3",
|
||||
"np": "^7.4.0",
|
||||
"prettier": "^2.2.1",
|
||||
"regenerator-runtime": "^0.13.7",
|
||||
"rimraf": "^3.0.2",
|
||||
"rollup": "^2.39.0",
|
||||
"rollup-plugin-typescript2": "^0.30.0",
|
||||
"ts-node": "^9.1.1",
|
||||
"tsconfig-paths": "^3.9.0",
|
||||
"typescript": "^4.1.5"
|
||||
},
|
||||
"ava": {
|
||||
"extensions": [
|
||||
"ts"
|
||||
],
|
||||
"require": [
|
||||
"tsconfig-paths/register",
|
||||
"ts-node/register"
|
||||
]
|
||||
},
|
||||
"np": {
|
||||
"branch": "production",
|
||||
"publish": false,
|
||||
"yarn": false
|
||||
},
|
||||
"eslintConfig": {
|
||||
"ignorePatterns": [
|
||||
"node_modules",
|
||||
"dist",
|
||||
"scripts",
|
||||
"test"
|
||||
],
|
||||
"root": true,
|
||||
"parser": "@typescript-eslint/parser",
|
||||
"plugins": [
|
||||
"@typescript-eslint",
|
||||
"tree-shaking"
|
||||
],
|
||||
"extends": [
|
||||
"eslint:recommended",
|
||||
"plugin:@typescript-eslint/eslint-recommended",
|
||||
"plugin:@typescript-eslint/recommended",
|
||||
"prettier"
|
||||
],
|
||||
"rules": {
|
||||
"@typescript-eslint/no-empty-function": "off",
|
||||
"@typescript-eslint/no-explicit-any": "off",
|
||||
"@typescript-eslint/ban-ts-ignore": "off",
|
||||
"tree-shaking/no-side-effects-in-initialization": "error",
|
||||
"@typescript-eslint/ban-ts-comment": "off"
|
||||
}
|
||||
},
|
||||
"prettier": {
|
||||
"printWidth": 100,
|
||||
"tabWidth": 2,
|
||||
"singleQuote": true,
|
||||
"trailingComma": "es5",
|
||||
"semi": false,
|
||||
"bracketSpacing": true,
|
||||
"quoteProps": "consistent",
|
||||
"plugins": [
|
||||
"prettier-plugin-jsdoc"
|
||||
]
|
||||
"yarn": false,
|
||||
"branch": "production"
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user