-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 2.95 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
{
"name": "show-dancer",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve --ssl",
"build": "ng build",
"watch": "ng build --watch --configuration development",
"test": "jest",
"lint": "ng lint",
"test:components": "cypress run --component",
"test:components:watch": "cypress open --component --browser=chrome",
"cy:run": "cypress run",
"cy:open": "cypress open --e2e --browser chrome",
"prepare": "husky install",
"postinstall": "npm run copy:icons",
"copy:icons": "node tools/copy-file.js ./node_modules/bootstrap-icons/bootstrap-icons.svg ./src/assets/icons"
},
"private": true,
"dependencies": {
"@angular/animations": "^16.1.4",
"@angular/cdk": "^16.1.4",
"@angular/common": "^16.1.4",
"@angular/compiler": "^16.1.4",
"@angular/core": "^16.1.4",
"@angular/forms": "^16.1.4",
"@angular/material": "^16.1.4",
"@angular/material-date-fns-adapter": "^16.1.4",
"@angular/platform-browser": "^16.1.4",
"@angular/platform-browser-dynamic": "^16.1.4",
"@angular/router": "^16.1.4",
"@ngneat/until-destroy": "^9.2.2",
"@ngrx/component-store": "^16.1.0",
"@state-adapt/angular": "^2.0.5",
"@state-adapt/core": "^2.0.5",
"@state-adapt/rxjs": "^2.0.5",
"bootstrap-icons": "^1.11.2",
"date-fns": "^2.29.3",
"hammerjs": "^2.0.8",
"ng-recaptcha": "^12.0.1",
"ngx-image-cropper": "^6.3.2",
"rxjs": "~7.5.0",
"tslib": "^2.3.0",
"uuid": "9.0.0-beta.0",
"zone.js": "~0.13.1"
},
"devDependencies": {
"@angular-devkit/build-angular": "^16.1.4",
"@angular-eslint/builder": "^16.0.3",
"@angular-eslint/eslint-plugin": "^16.0.3",
"@angular-eslint/eslint-plugin-template": "^16.0.3",
"@angular-eslint/schematics": "^16.0.3",
"@angular-eslint/template-parser": "^16.0.3",
"@angular/cli": "^16.1.4",
"@angular/compiler-cli": "^16.1.4",
"@ngneat/spectator": "^15.0.1",
"@testing-library/cypress": "^10.0.1",
"@types/jest": "^29.5.2",
"@types/node": "^16.11.48",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^6.1.0",
"@typescript-eslint/parser": "^6.1.0",
"autoprefixer": "^10.4.13",
"cypress": "^12.17.4",
"cypress-light-theme": "^1.0.0",
"eslint": "^8.45.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-unused-imports": "^3.0.0",
"husky": "^7.0.0",
"jest": "^29.6.1",
"jest-preset-angular": "^13.1.1",
"lint-staged": "^13.1.2",
"miragejs": "^0.1.47",
"ng-mocks": "^14.11.0",
"postcss": "^8.4.21",
"prettier": "3.2.4",
"prettier-plugin-tailwindcss": "^0.5.11",
"pretty-quick": "^4.0.0",
"tailwindcss": "^3.4.1",
"ts-jest": "^29.1.1",
"typescript": "~5.1.6"
},
"lint-staged": {
"*.{js,md,html,scss,css}": [
"prettier --cache --ignore-unknown --write"
],
"*.ts": [
"eslint --cache --cache-strategy content --fix",
"prettier --cache --ignore-unknown --write"
]
}
}