li-dance-backoffice/frontend/package.json

58 lines
1.5 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",
"test:coverage": "jest --coverage"
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",
"@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:29:09 +01:00
"jest": "^29.7.0",
"jest-preset-angular": "^14.0.3",
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
}