forked from ngxs-labs/async-storage-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
94 lines (94 loc) · 3.12 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
{
"name": "@mrfischer/async-storage-plugin",
"version": "0.2.1",
"repository": {
"type": "git",
"url": "git+https://github.com/stephan-fischer/async-storage-plugin.git"
},
"license": "MIT",
"homepage": "https://github.com/stephan-fischer/async-storage-plugin#readme",
"bugs": {
"url": "https://github.com/stephan-fischer/async-storage-plugin/issues"
},
"keywords": [
"ngxs",
"redux",
"store"
],
"contributors": [
{
"name": "Tom Demulier--Chevret",
"email": "[email protected]"
},
{
"name": "Marc Stammerjohann",
"email": "[email protected]"
},
{
"name": "Stephan Fischer",
"email": "[email protected]"
}
],
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e",
"build:plugin": "ng build async-storage-plugin",
"build:prod": "ng build async-storage-plugin --configuration production && cp README.md dist/@mrfischer/async-storage-plugin/.",
"test:plugin": "ng test async-storage-plugin",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"format": "prettier --write \"**/*{.ts,.scss}\""
},
"private": true,
"dependencies": {
"@angular/animations": "^12.2.13",
"@angular/common": "^12.2.13",
"@angular/compiler": "^12.2.13",
"@angular/core": "^12.2.13",
"@angular/forms": "^12.2.13",
"@angular/platform-browser": "^12.2.13",
"@angular/platform-browser-dynamic": "^12.2.13",
"@angular/router": "^12.2.13",
"@capacitor/status-bar": "^5.0.6",
"@ionic-native/core": "5.18.0",
"@ionic/angular": "5.8.5",
"@ionic/storage-angular": "^3.0.4",
"@ngxs/logger-plugin": "3.8.2",
"@ngxs/store": "3.8.2",
"ngxs-reset-plugin": "2.0.0",
"rxjs": "6.6.7",
"tslib": "^2.3.1",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-devkit/architect": "0.1300.2",
"@angular-devkit/build-angular": "~12.2.13",
"@angular-devkit/core": "^12.2.13",
"@angular-devkit/schematics": "^12.2.13",
"@angular/cli": "^12.2.13",
"@angular/compiler-cli": "^12.2.13",
"@angular/language-service": "^12.2.13",
"@ionic/angular-toolkit": "5.0.3",
"@types/eslint": "^7.28.2",
"@types/jasmine": "~3.10.2",
"@types/jasminewd2": "2.0.10",
"@types/node": "^16.11.7",
"codelyzer": "^6.0.2",
"jasmine-core": "~3.10.1",
"jasmine-spec-reporter": "~7.0.0",
"karma": "~6.3.8",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage-istanbul-reporter": "~3.0.3",
"karma-jasmine": "~4.0.1",
"karma-jasmine-html-reporter": "^1.7.0",
"ng-packagr": "^12.2.5",
"prettier": "2.4.1",
"protractor": "~7.0.0",
"ts-node": "10.4.0",
"tslint": "~6.1.3",
"typescript": "4.2.4"
}
}