li-dance-backoffice/frontend/package.json

72 lines
2.1 KiB
JSON
Raw Normal View History

2022-11-30 15:26:46 +01:00
{
"name": "li-dance-backoffice",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"watch": "ng build --watch --configuration development",
2024-03-10 18:29:09 +01:00
"test": "jest",
"test:watch": "jest --watch",
2024-03-10 18:41:27 +01:00
"test:coverage": "jest --coverage",
2024-03-10 18:43:24 +01:00
"lint": "ng lint",
"foramt": "npx prettier --write 'src/**/*.ts' 'src/**/*.html' 'src/**/*.scss'"
2022-11-30 15:26:46 +01:00
},
"private": true,
"dependencies": {
2024-03-10 18:13:36 +01:00
"@angular/animations": "^17.2.4",
2024-03-10 18:20:24 +01:00
"@angular/cdk": "^17.2.2",
2024-03-10 18:13:36 +01:00
"@angular/common": "^17.2.4",
"@angular/compiler": "^17.2.4",
"@angular/core": "^17.2.4",
"@angular/forms": "^17.2.4",
2024-03-10 18:20:24 +01:00
"@angular/material": "^17.2.2",
2024-03-10 18:13:36 +01:00
"@angular/platform-browser": "^17.2.4",
"@angular/platform-browser-dynamic": "^17.2.4",
"@angular/router": "^17.2.4",
2024-03-10 18:20:24 +01:00
"bootstrap": "^5.3.3",
"bootstrap-icons": "^1.11.3",
2022-11-30 15:26:46 +01:00
"rxjs": "~7.4.0",
"tslib": "^2.3.0",
2024-03-10 18:13:36 +01:00
"zone.js": "~0.14.4"
2022-11-30 15:26:46 +01:00
},
"devDependencies": {
2024-03-10 18:13:36 +01:00
"@angular-devkit/build-angular": "^17.2.3",
2024-03-10 18:41:27 +01:00
"@angular-eslint/builder": "17.2.1",
"@angular-eslint/eslint-plugin": "17.2.1",
"@angular-eslint/eslint-plugin-template": "17.2.1",
"@angular-eslint/schematics": "17.2.1",
"@angular-eslint/template-parser": "17.2.1",
2024-03-10 18:13:36 +01:00
"@angular/cli": "^17.2.3",
"@angular/compiler-cli": "^17.2.4",
2024-03-10 18:29:09 +01:00
"@types/jest": "^29.5.12",
2022-11-30 15:26:46 +01:00
"@types/node": "^12.11.1",
2024-03-10 18:41:27 +01:00
"@typescript-eslint/eslint-plugin": "6.19.0",
"@typescript-eslint/parser": "6.19.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
2024-03-10 18:29:09 +01:00
"jest": "^29.7.0",
"jest-preset-angular": "^14.0.3",
2024-03-10 18:41:27 +01:00
"prettier": "^3.2.5",
"prettier-eslint": "^16.3.0",
2024-03-10 18:13:36 +01:00
"typescript": "~5.3.3"
2024-03-10 18:29:09 +01:00
},
"jest": {
"preset": "jest-preset-angular",
"setupFilesAfterEnv": [
"<rootDir>/src/setup.jest.ts"
],
"testPathIgnorePatterns": [
"<rootDir>/node_modules/",
"<rootDir>/dist/"
],
"globals": {
"ts-jest": {
"tsConfig": "<rootDir>/tsconfig.spec.json",
"stringifyContentPathRegex": "\\.html$"
}
}
2022-11-30 15:26:46 +01:00
}
2024-03-10 18:20:24 +01:00
}