-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
111 lines (111 loc) · 3.44 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "tech-assessment",
"version": "0.0.0",
"license": "MIT",
"private": false,
"packageManager": "pnpm@7.11.0",
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"webpack",
"@angular-devkit/*"
]
}
},
"scripts": {
"ng": "ng",
"start": "ng serve --open",
"build": "ng build",
"build:prod": "ng build --configuration production",
"test": "ng test --watch=false",
"test:watch": "ng test",
"lint": "ng lint",
"e2e": "ng e2e",
"clean": "rimraf dist",
"build:package": "ng-packagr -p ng-package.json",
"copyfiles": "copyfiles CHANGELOG.md dist && copyfiles -u 1 lib/modules/**/package.json dist && copyfiles -u 1 lib/**/*.scss dist/scss",
"release:git": "git add . package.json && git commit -m \"chore: bump version number\" && standard-version --release-as patch && git push --follow-tags origin master",
"release:npm": "npm run build:dist && npm publish dist",
"release:yarn": "yarn build:dist && yarn publish dist",
"release:pnpm": "pnpm build:dist && pnpm publish dist",
"release": "pnpm release:git && pnpm release:pnpm",
"postinstall": "ngcc"
},
"author": "Viacheslav Horshkov",
"keywords": [
],
"devDependencies": {
"@angular-devkit/build-angular": "^14.2.0",
"@angular/animations": "14.2.0",
"@angular/cdk": "14.2.0",
"@angular/cli": "14.2.0",
"@angular/common": "14.2.0",
"@angular/compiler": "14.2.0",
"@angular/compiler-cli": "14.2.0",
"@angular/core": "14.2.0",
"@angular/forms": "14.2.0",
"@angular/language-service": "14.2.0",
"@angular/localize": "14.2.0",
"@angular/material": "^14.2.0",
"@angular/platform-browser": "14.2.0",
"@angular/platform-browser-dynamic": "14.2.0",
"@angular/router": "14.2.0",
"@datorama/akita-ng-router-store": "^7.0.0",
"@datorama/akita-ngdevtools": "^7.0.0",
"@popperjs/core": "2.11.6",
"@types/jasmine": "~3.6.0",
"@types/jasminewd2": "~2.0.8",
"@types/node": "^18.7.15",
"angular-calendar": "0.30.1",
"angular-draggable-droppable": "^7.0.0",
"angular-resizable-element": "^6.0.0",
"autoprefixer": "^9.0.0",
"bootstrap": "^5.2.0",
"codelyzer": "^6.0.0",
"copyfiles": "^2.1.1",
"core-js": "^3.6.1",
"date-fns": "^2.8.1",
"jasmine-core": "~3.8.0",
"jasmine-spec-reporter": "~5.0.0",
"jquery": "^3.5.0",
"karma": "~6.3.16",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage-istanbul-reporter": "~3.0.2",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "^1.5.0",
"moment": "^2.29.4",
"moment-es6": "^1.0.0",
"moment-timezone": "^0.5.37",
"ng-packagr": "14.2.0",
"popper.js": "^1.16.0",
"postcss-cli": "^6.1.3",
"postcss-flexibility": "^2.0.0",
"protractor": "~7.0.0",
"rxjs": "^6.5.3",
"sass": "^1.32.5",
"standard-version": "^8.0.1",
"ts-node": "~8.5.4",
"tslib": "^2.0.0",
"tslint": "~6.1.0",
"typescript": "4.6.4",
"zone.js": "~0.11.4"
},
"peerDependencies": {
"@angular/core": ">=14.0.0",
"angular-calendar": "^0.30.1"
},
"sideEffects": [
"*.css",
"*.scss"
],
"dependencies": {
"angular-material-datepicker": "^1.0.2",
"@ngneat/content-loader": "^6.0.0",
"@ngneat/tailwind": "^7.0.3",
"@ngneat/until-destroy": "^8.0.3",
"@sentry/angular": "^6.18.1",
"@sentry/tracing": "^6.18.1",
"ng-zorro-antd": "^13.1.0",
"@ant-design/icons-angular": "^13.1.0"
}
}