-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
160 lines (160 loc) · 5.32 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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
{
"name": "flipper",
"appId": "flipper.rw",
"version": "1.1.121",
"description": "Flipper business app for business",
"homepage": "https://flipper.rw/",
"productName": "flipper",
"author": {
"name": "yegobox",
"email": "flipper@yegobox.com"
},
"repository": {
"type": "git",
"url": "https://github.com/yegobox/flipper.git"
},
"keywords": [
"POS",
"Inventory",
"CRM",
"Yegobox",
"Flipper"
],
"main": "main.js",
"private": true,
"scripts": {
"postinstall": "electron-builder install-app-deps",
"ng": "ng",
"start-electron": "npm-run-all -p electron:serve",
"start": "npm-run-all -p ng:serve electron:serve",
"build": "npm run postinstall:electron && npm run electron:serve-tsc && ng build --prod --base-href=./ && gulp",
"build:dev": "npm run build -- -c dev",
"build:prod": "npm run build -- -c production",
"ng:serve": "ng serve",
"start-web": "ng serve -c dev-web -o",
"postinstall:web": "node postinstall-web.js",
"postinstall:electron": "node postinstall.js",
"electron:serve-tsc": "tsc -p tsconfig-serve.json",
"electron:serve": "wait-on http-get://localhost:4200/ && npm run postinstall:electron && npm run electron:serve-tsc && electron . --serve",
"electron:local": "npm run build:prod && electron .",
"electron:linux": "npm run build:prod && npx electron-builder build -p always --linux snap -c.snap.publish=github",
"electron:windows": "npm run build:prod && npx electron-builder build --ia32 -p always --windows",
"electron:mac": "npm run build:prod && npx electron-builder build -p always --mac",
"test": "ng test",
"e2e": "ng e2e",
"version": "conventional-changelog -i CHANGELOG.md -s -r 0 && git add CHANGELOG.md",
"test:travis": "npm run postinstall:web && ng test --browsers=ChromeHeadless",
"release": "standard-version",
"lint": "ng lint --fix=true",
"mocha": "mocha",
"alpha": "npm run release -- --prerelease alpha",
"major": "npm run release -- --release-as major",
"minor": "npm run release -- --release-as minor",
"patch": "npm run release -- --release-as patch"
},
"config": {
"ghooks": {
"pre-commit": "",
"post-merge": "npm install",
"post-rewrite": "npm install"
}
},
"devDependencies": {
"@angular-builders/custom-webpack": "9.2.0",
"@angular-devkit/build-angular": "~0.1000.1",
"@angular/cli": "~10.0.1",
"@angular/common": "~10.0.2",
"@angular/compiler": "~10.0.2",
"@angular/core": "~10.0.2",
"@angular/forms": "~10.0.2",
"@angular/compiler-cli": "~10.0.2",
"@angular/platform-browser": "~10.0.2",
"@angular/platform-browser-dynamic": "~10.0.2",
"@angular/router": "~10.0.2",
"@hoodie/store-client": "^8.3.0",
"@angular/language-service": "10.0.3",
"@ngx-translate/core": "13.0.0",
"@ngx-translate/http-loader": "6.0.0",
"@types/jasmine": "3.5.11",
"@types/jasminewd2": "2.0.8",
"@types/mocha": "8.0.0",
"@types/node": "^12.11.1",
"chai": "4.2.0",
"codelyzer": "^6.0.0",
"conventional-changelog-cli": "2.0.34",
"core-js": "3.6.5",
"electron": "9.0.3",
"electron-builder": "22.7.0",
"electron-reload": "1.5.0",
"gulp": "^4.0.2",
"gulp-replace": "^1.0.0",
"jasmine-core": "3.5.0",
"jasmine-spec-reporter": "5.0.2",
"karma": "5.1.0",
"karma-chrome-launcher": "3.1.0",
"karma-coverage-istanbul-reporter": "3.0.3",
"karma-jasmine": "3.3.1",
"karma-jasmine-html-reporter": "1.5.4",
"mocha": "8.0.1",
"npm-run-all": "4.1.5",
"rxjs": "6.6.0",
"spectron": "11.1.0",
"standard-version": "^8.0.1",
"ts-node": "8.10.2",
"tslint": "~6.1.0",
"typescript": "~3.9.6",
"update-electron-app": "^1.5.0",
"wait-on": "5.1.0",
"webdriver-manager": "12.1.7",
"zone.js": "~0.10.2"
},
"engines": {
"node": ">=10.9.0"
},
"dependencies": {
"@angular/animations": "~10.0.2",
"@angular/cdk": "~10.0.1",
"@angular/fire": "^6.0.0",
"@angular/flex-layout": "^10.0.0-beta.32",
"@angular/localize": "^10.0.3",
"@angular/material": "~10.0.1",
"@enexus/flipper-color": "0.0.4",
"@enexus/flipper-components": "1.3.0",
"@enexus/flipper-dashboard": "0.0.6",
"@enexus/flipper-dialog": "1.0.2",
"@enexus/flipper-event": "0.0.3",
"@enexus/flipper-file-upload": "^1.0.0",
"@enexus/flipper-font": "1.0.2",
"@enexus/flipper-inventory": "1.0.5",
"@enexus/flipper-menu": "0.0.22",
"@enexus/flipper-offline-database": "1.0.13",
"@enexus/flipper-pos": "1.0.7",
"@enexus/flipper-settings": "1.0.0",
"@enexus/flipper-vendors": "1.1.0",
"@enexus/payment-card": "1.0.3",
"@swimlane/ngx-charts": "^14.0.0",
"@types/lodash": "^4.14.155",
"@types/pouchdb": "^6.4.0",
"alasql": "0.6.2",
"deepmerge": "^4.0.0",
"dot-object": "^2.1.3",
"electron-is-dev": "^1.1.0",
"electron-log": "^4.2.1",
"electron-push-receiver": "2.1.3",
"electron-updater": "4.3.1",
"event-source-polyfill": "^1.0.15",
"firebase": "^7.16.0",
"ghooks": "^2.0.4",
"i": "^0.3.6",
"ngx-barcode": "^0.2.4",
"node-notifier": "^7.0.1",
"npm": "^6.14.6",
"pouchdb": "^7.2.1",
"pouchdb-find": "^7.2.1",
"pouchdb-upsert": "2.2.0",
"pusher-js": "^6.0.3",
"showdown": "^1.9.1",
"tslib": "^2.0.0",
"uuid": "^8.1.0"
}
}