forked from Aam-Digital/ndb-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
117 lines (117 loc) · 3.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
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
112
113
114
115
116
117
{
"name": "ndb-core",
"version": "0.0.0",
"license": "GPL-3.0",
"scripts": {
"ng": "ng",
"start": "ng serve --proxy-config proxy.conf.json",
"build": "ng build --prod",
"build-localized": "ng build --configuration=production,localized",
"test": "ng test",
"test-ci": "ng test --code-coverage --karmaConfig=build/karma-ci.conf.js ",
"lint": "ng lint ndb-core --type-check",
"e2e": "ng e2e",
"compodoc": "npx compodoc -c doc/compodoc_sources/.compodocrc.json",
"postinstall": "ngcc && node patch-webpack.js",
"docs:json": "compodoc -p ./tsconfig.json -e json -d .",
"storybook": "npm run docs:json && start-storybook -p 6006",
"build-storybook": "npm run docs:json && build-storybook",
"extract-i18n": "ng extract-i18n --output-path ./src/locale/ && xliffmerge --profile xliffmerge.json"
},
"private": true,
"dependencies": {
"@angular/animations": "^11.2.12",
"@angular/cdk": "^11.2.13",
"@angular/common": "^11.2.12",
"@angular/compiler": "^11.2.12",
"@angular/core": "^11.2.12",
"@angular/flex-layout": "^11.0.0-beta.33",
"@angular/forms": "^11.2.12",
"@angular/localize": "^11.2.12",
"@angular/material": "^11.2.13",
"@angular/platform-browser": "^11.2.12",
"@angular/platform-browser-dynamic": "^11.2.12",
"@angular/router": "^11.2.12",
"@angular/service-worker": "^11.2.12",
"@ngneat/until-destroy": "^8.1.4",
"@sentry/browser": "^6.11.0",
"angulartics2": "^10.0.0",
"crypto-js": "^4.1.1",
"deep-object-diff": "^1.1.0",
"faker": "^5.5.3",
"flag-icon-css": "^3.5.0",
"font-awesome": "^4.7.0",
"idb": "^6.1.2",
"json-query": "^2.2.2",
"lodash": "^4.17.21",
"md5": "^2.3.0",
"moment": "^2.29.1",
"ngx-filter-pipe": "^2.1.2",
"ngx-markdown": "^11.1.3",
"ngx-papaparse": "^5.0.0",
"pouchdb-adapter-memory": "^7.2.2",
"pouchdb-browser": "^7.2.2",
"reflect-metadata": "^0.1.13",
"reveal": "0.0.4",
"rxjs": "^6.6.7",
"stream": "0.0.2",
"tslib": "^2.3.1",
"uuid": "^8.3.2",
"webdav": "^4.6.1",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.1102.14",
"@angular/cli": "^11.2.14",
"@angular/compiler-cli": "^11.2.4",
"@babel/core": "^7.13.8",
"@compodoc/compodoc": "1.1.11",
"@schematics/angular": "^11.2.14",
"@storybook/addon-actions": "^6.1.21",
"@storybook/addon-essentials": "^6.1.21",
"@storybook/addon-links": "^6.1.21",
"@storybook/angular": "^6.1.21",
"@types/crypto-js": "^4.0.2",
"@types/faker": "^5.5.7",
"@types/file-saver": "^2.0.3",
"@types/jasmine": "~3.8.2",
"@types/lodash": "^4.14.168",
"@types/node": "^14.14.31",
"@types/pouchdb": "^6.4.0",
"babel-loader": "^8.2.2",
"codelyzer": "6.0.1",
"husky": "^5.1.3",
"jasmine-core": "^3.8.0",
"jasmine-spec-reporter": "^6.0.0",
"karma": "^6.3.4",
"karma-chrome-launcher": "^3.1.0",
"karma-cli": "^2.0.0",
"karma-coverage-istanbul-reporter": "^3.0.3",
"karma-firefox-launcher": "^2.1.1",
"karma-jasmine": "^4.0.1",
"karma-jasmine-html-reporter": "^1.7.0",
"lint-staged": "^10.5.4",
"ngx-i18nsupport": "^0.17.1",
"prettier": "~2.2.1",
"protractor": "~7.0.0",
"ts-node": "^9.1.1",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.3.0",
"typescript": "~4.1.6",
"webpack": "^4.6.0"
},
"browser": {
"crypto": false
},
"husky": {
"hooks": {
"pre-commit": "lint-staged --relative"
}
},
"lint-staged": {
"*.{ts,js,css}": [
"tslint --fix"
]
}
}