This repository has been archived by the owner on May 18, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.76 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
{
"name": "ng-validation-messages",
"author": "valueadd",
"version": "14.0.1",
"scripts": {
"coveralls": "cat ./coverage/lcov.info | ./node_modules/.bin/coveralls",
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"test": "jest",
"lint": "ng lint",
"e2e": "ng e2e",
"prepare-release": "git checkout master && git fetch origin master && git pull origin master && npm run standard-version && ng build validation-messages && npm run copy-files",
"push-release": "cd dist/validation-messages && npm publish --access public && git push origin master --tags --no-verify",
"validate": "node ./tools/tasks/validate-commit-message.js",
"standard-version": "cd ./projects/validation-messages && ./../../node_modules/.bin/standard-version",
"copy-files": "cp ./README.md ./dist/validation-messages",
"cypress:open": "cypress open",
"cypress:run": "cypress run"
},
"dependencies": {
"@angular/animations": "^14.1.1",
"@angular/cdk": "^14.1.1",
"@angular/cli": "~14.1.1",
"@angular/common": "~14.1.1",
"@angular/compiler": "~14.1.1",
"@angular/core": "~14.1.1",
"@angular/forms": "~14.1.1",
"@angular/material": "^14.1.1",
"@angular/platform-browser": "~14.1.1",
"@angular/platform-browser-dynamic": "~14.1.1",
"@angular/router": "~14.1.1",
"core-js": "^3.24.1",
"lodash-decorators": "^6.0.1",
"rxjs": "~7.5.6",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "~14.1.1",
"@angular-eslint/builder": "14.0.2",
"@angular-eslint/eslint-plugin": "14.0.2",
"@angular-eslint/eslint-plugin-template": "14.0.2",
"@angular-eslint/schematics": "14.0.2",
"@angular-eslint/template-parser": "14.0.2",
"@angular/cli": "~14.1.1",
"@angular/compiler-cli": "~14.1.1",
"@angular/language-service": "~14.1.1",
"@cypress/schematic": "^2.0.0",
"@nrwl/jest": "14.5.4",
"@testing-library/angular": "^12.1.1",
"@types/jasmine": "^4.0.3",
"@types/jest": "^28.1.6",
"@types/node": "~18.6.4",
"@typescript-eslint/eslint-plugin": "5.32.0",
"@typescript-eslint/parser": "5.32.0",
"coveralls": "^3.1.1",
"cypress": "latest",
"eslint": "^8.21.0",
"husky": "^8.0.1",
"jest": "^28.1.3",
"jest-environment-jsdom": "^28.1.3",
"jest-jasmine2": "^28.1.3",
"jest-preset-angular": "^12.2.0",
"lint-staged": "^13.0.3",
"ng-packagr": "^14.1.0",
"prettier": "2.7.1",
"semver": "^7.3.7",
"shelljs": "^0.8.5",
"standard-version": "^9.5.0",
"ts-jest": "^28.0.7",
"ts-node": "~10.9.1",
"tsickle": "^0.46.3",
"tslib": "^2.4.0",
"typescript": "~4.7.4"
},
"jest": {
"preset": "jest-preset-angular",
"setupFilesAfterEnv": [
"<rootDir>/setup-jest.ts"
]
}
}