mvp-ticket/frontend/package.json

90 lines
2.8 KiB
JSON
Raw Permalink Normal View History

2024-03-14 19:58:24 +01:00
{
"name": "frontend",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start:dev:ngrok": "concurrently \"pnpm run start:dev\" \"pnpm run ngrok-tunnel\"",
"start:dev": "ng serve --configuration=development",
"build:dev": "ng build --configuration=development",
"start:prod": "ng serve --configuration=production",
"build:prod": "ng build --configuration=production",
2024-03-14 19:58:24 +01:00
"test": "jest",
"test:watch": "jest --watch",
2024-03-14 20:25:07 +01:00
"test:coverage": "jest --coverage",
2024-05-17 13:44:07 +02:00
"lint:check": "ng lint",
"lint:fix": "ng lint --fix",
"prettier:fix": "prettier --write .",
"prettier:check": "prettier --check .",
"format": "pnpm run lint:fix && pnpm run prettier:fix",
"ngrok-tunnel": "pnpm wait-on http://localhost:4200 && ngrok http --domain=commonly-hot-airedale.ngrok-free.app 4200"
2024-03-14 19:58:24 +01:00
},
"private": true,
"dependencies": {
"@angular/animations": "^17.3.0",
"@angular/common": "^17.3.0",
"@angular/compiler": "^17.3.0",
"@angular/core": "^17.3.0",
"@angular/forms": "^17.3.0",
"@angular/platform-browser": "^17.3.0",
"@angular/platform-browser-dynamic": "^17.3.0",
"@angular/router": "^17.3.0",
2024-05-20 13:55:30 +02:00
"@types/dompurify": "^3.0.5",
2024-06-26 01:36:09 +02:00
"chroma-js": "^2.4.2",
2024-05-20 13:55:30 +02:00
"crypto-js": "^4.2.0",
"dompurify": "^3.1.3",
2024-05-22 15:46:19 +02:00
"primeicons": "^7.0.0",
2024-03-14 22:08:08 +01:00
"primeng": "^17.11.0",
2024-03-14 19:58:24 +01:00
"rxjs": "~7.8.0",
"tslib": "^2.3.0",
"zone.js": "~0.14.3"
},
"devDependencies": {
"@angular-devkit/build-angular": "^17.3.0",
2024-03-14 20:25:07 +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-14 19:58:24 +01:00
"@angular/cli": "^17.3.0",
"@angular/compiler-cli": "^17.3.0",
2024-06-26 01:36:09 +02:00
"@types/chroma-js": "^2.4.4",
2024-05-20 13:55:30 +02:00
"@types/crypto-js": "^4.2.2",
2024-03-14 19:58:24 +01:00
"@types/jest": "^29.5.12",
2024-03-14 20:25:07 +01:00
"@typescript-eslint/eslint-plugin": "6.19.0",
"@typescript-eslint/parser": "6.19.0",
2024-06-07 09:08:41 +02:00
"autoprefixer": "^10.4.19",
"concurrently": "^8.2.2",
2024-06-07 09:08:41 +02:00
"daisyui": "^4.12.2",
2024-05-17 13:44:07 +02:00
"eslint": "^8.57.0",
2024-03-14 20:25:07 +01:00
"eslint-config-prettier": "^9.1.0",
2024-05-17 13:20:05 +02:00
"eslint-plugin-import": "^2.29.1",
2024-05-17 13:44:07 +02:00
"eslint-plugin-prettier": "^5.1.3",
2024-05-17 21:40:33 +02:00
"eslint-plugin-sort-class-members": "^1.20.0",
2024-05-17 22:06:52 +02:00
"eslint-plugin-unused-imports": "^3.2.0",
2024-03-14 19:58:24 +01:00
"jest": "^29.7.0",
"jest-preset-angular": "^14.0.3",
2024-06-07 09:08:41 +02:00
"postcss": "^8.4.38",
2024-03-14 20:25:07 +01:00
"prettier": "3.2.5",
2024-06-07 09:08:41 +02:00
"tailwindcss": "^3.4.4",
2024-06-26 01:36:09 +02:00
"tailwindcss-animated": "^1.1.2",
"typescript": "~5.4.2",
"wait-on": "^7.2.0"
2024-03-14 19:58:24 +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$"
}
}
}
}