-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
79 lines (79 loc) · 2.61 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
{
"name": "@tethys/store",
"version": "18.0.1",
"scripts": {
"ng": "ng",
"start": "npm run start:docs",
"docgeni": "npx --no-install docgeni init",
"start:docs": "docgeni serve --port 8887",
"build": "ng build store --configuration production",
"build:docs": "docgeni build --configuration production",
"build:docs-gh-pages": "docgeni build --configuration production --base-href=/store/",
"test": "ng test",
"report-coverage": "cat ./coverage/store/lcov.info | coveralls",
"lint": "ng lint",
"prepare": "husky install",
"pretty": "pretty-quick",
"release": "wpm release",
"pub": "wpm publish && npm run pub-only",
"pub-only": "cd ./dist/store && npm publish",
"pub-next": "wpm publish && npm run pub-only-next",
"pub-only-next": "cd ./dist/store && npm publish --tag next"
},
"engines": {
"node": ">=18.10.0",
"yarn": ">=1.22.4 <2",
"npm": "Please use yarn instead of NPM to install dependencies"
},
"private": true,
"dependencies": {
"@angular/animations": "^18.2.0",
"@angular/cdk": "^18.2.0",
"@angular/common": "^18.2.0",
"@angular/compiler": "^18.2.0",
"@angular/core": "^18.2.0",
"@angular/forms": "^18.2.0",
"@angular/platform-browser": "^18.2.0",
"@angular/platform-browser-dynamic": "^18.2.0",
"@angular/router": "^18.2.0",
"@tethys/cdk": "^18.0.0",
"rxjs": "~6.6.0",
"tslib": "^2.0.0",
"zone.js": "~0.14.10"
},
"devDependencies": {
"@angular-devkit/build-angular": "^18.2.0",
"@angular-eslint/builder": "18.3.0",
"@angular-eslint/eslint-plugin": "18.3.0",
"@angular-eslint/eslint-plugin-template": "18.3.0",
"@angular-eslint/schematics": "18.3.0",
"@angular-eslint/template-parser": "18.3.0",
"@angular/cli": "^18.2.0",
"@angular/compiler-cli": "^18.2.0",
"@commitlint/cli": "^12.0.1",
"@commitlint/config-angular": "^12.0.1",
"@docgeni/cli": "2.3.0",
"@docgeni/template": "2.3.0",
"@types/jasmine": "~3.6.0",
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"@worktile/pkg-manager": "0.0.9",
"coveralls": "^3.0.9",
"eslint": "^8.57.0",
"husky": "^6.0.0",
"jasmine-core": "~4.5.0",
"jasmine-spec-reporter": "~5.0.0",
"karma": "~6.4.0",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage": "~2.2.0",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "~2.0.0",
"ng-packagr": "^18.2.0",
"prettier": "^3.3.3",
"pretty-quick": "^4.0.0",
"todomvc-app-css": "^2.4.1",
"ts-node": "~8.3.0",
"typescript": "~5.5.4"
}
}