-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
96 lines (96 loc) · 3.47 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "ng-start",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"test:coverage": "jest --coverage --coverageDirectory=output/coverage/jest --runInBand",
"lint": "npm run lint:ts && npm run lint:scss",
"lint:ts": "eslint --color -c .eslintrc --ext .ts .",
"lint:scss": "npx stylelint \"src/**/*.scss\" --syntax scss",
"e2e": "ng e2e",
"bundle:report": "ng build --configuration='production' --stats-json && webpack-bundle-analyzer dist/ng-start/stats.json",
"build:prod": "ng build --configuration='production'",
"compodoc": "./node_modules/.bin/compodoc --theme laravel -p src/tsconfig.app.json",
"format:write": "prettier \"./{src,e2e}/**/*.{ts,js,html,scss}\" --write",
"format:test": "prettier \"./{src,e2e}/**/*.{ts,js,html,scss}\" --list-different",
"clean:dist": "npx rimraf dist",
"clean:modules": "npx rimraf ./node_modules package-lock.json",
"clean:all": "npm run clean && npm run clean:modules",
"generate-new-module": "cd schematics && npm run build && schematics .:new-module-schematics --dry-run=false"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"private": true,
"dependencies": {
"@angular/animations": "^17.2.3",
"@angular/cdk": "^17.2.1",
"@angular/common": "^17.2.3",
"@angular/compiler": "^17.2.3",
"@angular/core": "^17.2.3",
"@angular/forms": "^17.2.3",
"@angular/material": "^17.2.1",
"@angular/platform-browser": "^17.2.3",
"@angular/platform-browser-dynamic": "^17.2.3",
"@angular/router": "^17.2.3",
"@ngrx/component-store": "^17.1.1",
"@ngx-translate/core": "^15.0.0",
"@ngx-translate/http-loader": "^8.0.0",
"core-js": "^3.36.0",
"moment": "^2.30.1",
"ng-for-track-by-property": "^17.0.1",
"ngx-json-viewer": "^3.2.1",
"rxjs": "^7.8.1",
"tslib": "^2.6.2",
"zone.js": "^0.14.4"
},
"devDependencies": {
"@angular-builders/jest": "^17.0.2",
"@angular-devkit/build-angular": "^17.2.2",
"@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",
"@angular/cli": "^17.2.2",
"@angular/compiler-cli": "^17.2.3",
"@angular/language-service": "^17.2.3",
"@compodoc/compodoc": "^1.1.23",
"@tailwindcss/forms": "^0.5.7",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.24",
"@typescript-eslint/eslint-plugin": "7.1.1",
"@typescript-eslint/eslint-plugin-tslint": "^7.0.2",
"@typescript-eslint/parser": "7.1.1",
"autoprefixer": "10.4.18",
"codelyzer": "^6.0.2",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"husky": "^9.0.11",
"jest": "^29.7.0",
"jest-environment-jsdom-fourteen": "^1.0.1",
"jest-localstorage-mock": "^2.4.26",
"jest-preset-angular": "^14.0.3",
"miragejs": "^0.1.48",
"postcss": "^8.4.35",
"prettier": "^3.2.5",
"pretty-quick": "^4.0.0",
"protractor": "~7.0.0",
"stylelint": "^16.2.1",
"stylelint-config-prettier": "^9.0.5",
"stylelint-config-recommended-scss": "^14.0.0",
"stylelint-config-standard": "~36.0.0",
"stylelint-scss": "^6.2.1",
"tailwindcss": "^3.4.1",
"ts-jest": "^29.1.2",
"ts-node": "~10.9.2",
"tslint": "~6.1.3",
"typescript": "5.3.3",
"webpack-bundle-analyzer": "^4.10.1"
}
}