forked from assuncaocharles/ngx-indexed-db
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.2 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
{
"name": "ngx-indexed-db",
"version": "17.0.3",
"files": [
"dist/ngx-indexed-db/**/*"
],
"scripts": {
"ng": "ng",
"start": "ng serve",
"start:play": "ng serve --project playground",
"build": "ng build --project ngx-indexed-db --configuration production",
"build:lib": "ng build --project ngx-indexed-db --configuration production",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e",
"format": "prettier \"projects/**/*.{ts,json}\" --write"
},
"lint-staged": {
"*.{ts,js}": [
"prettier --write"
],
"*.{css}": [
"prettier --write"
],
"projects/ngx-indexed-db/**/*.{tsx,js}": [
"ng lint"
]
},
"dependencies": {
"@angular/animations": "^16.2.11",
"@angular/common": "^16.2.11",
"@angular/compiler": "^16.2.11",
"@angular/core": "^16.2.11",
"@angular/forms": "^16.2.11",
"@angular/platform-browser": "^16.2.11",
"@angular/platform-browser-dynamic": "^16.2.11",
"@angular/router": "^16.2.11",
"rxjs": "~6.5.5",
"tslib": "^2.0.0",
"zone.js": "~0.13.3"
},
"devDependencies": {
"@angular-devkit/build-angular": "^16.2.8",
"@angular/cli": "^16.2.8",
"@angular/compiler-cli": "^16.2.11",
"@commitlint/config-conventional": "^12.1.4",
"@types/jasmine": "~3.6.0",
"@types/jasminewd2": "~2.0.3",
"@types/node": "^12.20.13",
"codelyzer": "^6.0.0",
"commitlint": "^12.1.4",
"cz-conventional-changelog": "3.2.0",
"husky": ">=4",
"jasmine-core": "~3.8.0",
"jasmine-spec-reporter": "~5.0.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",
"lint-staged": ">=10",
"ng-packagr": "^16.2.3",
"prettier": "2.1.1",
"protractor": "~7.0.0",
"ts-node": "~8.3.0",
"tslint": "~6.1.0",
"typescript": "5.1.6"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"types": "dist/ngx-indexed-db/lib/ngx-indexed-db.meta.d.ts"
}