-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathpackage.json
113 lines (113 loc) · 3.86 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
{
"name": "open-pos",
"version": "0.1.0",
"private": false,
"description": "Open Source Point of Sale system",
"keywords": [
"POS",
"Point",
"of",
"Sale",
"Open"
],
"scripts": {
"ngbuild": "rm -rf ./dist && rm -rf ./dist-app && ng build --prod --aot=true",
"build": "gulp copy --option noreload",
"temp": "npm run ngbuild && npm run build && npm run npm-install && gulp watch",
"e2e": "protractor",
"e2e-test": "protractor ./protractor.conf.js",
"tslint": "tslint -c ./tslint.json \"./src/**/*.ts\" -e \"./src/**/typings.d.ts\" -e \"./src/environments/**\"",
"npm-install": "npm --prefix ./dist install ./dist --production",
"postinstall": "webdriver-manager update",
"lint": "tslint --format codeFrame -c ./tslint.json \"./src/**/*.ts\" -e \"./src/**/typings.d.ts\" -e \"./src/environments/**\"",
"start": "ng serve --live-reload --watcher",
"aot": "./node_modules/.bin/ngc -p deploy/platform/tsconfig-aot.json",
"package": "npm run ngbuild && npm run build && npm run npm-install && node \"./node_modules/electron-packager/cli.js\" dist POS --icon=src/assets/ico/icon.icn --out=dist-app --overwrite --platform=win32 --arch=x64",
"start-api": "cd mock-api && covalent-data &",
"stop-api": "pkill covalent-data",
"webdriver-update": "bash ./node_modules/.bin/webdriver-manager update",
"test": "ng test --code-coverage --single-run",
"ghpages-deploy": "bash scripts/ghpages-deploy.sh",
"live-reload": "gulp watch"
},
"engines": {
"node": ">4.4 < 7",
"npm": ">3"
},
"repository": {
"type": "git",
"url": "https://github.com/saurabh1e/open-pos-frontend"
},
"license": "GPLA3",
"author": "Saurabh Gupta",
"contributors": [
"Saurabh Gupta <[email protected]>"
],
"dependencies": {
"@angular/animations": "^4.1.0-beta.0",
"@angular/common": "^4.1.0-beta.0",
"@angular/compiler": "^4.1.0-beta.0",
"@angular/core": "^4.1.0-beta.0",
"@angular/flex-layout": "2.0.0-beta.7",
"@angular/forms": "^4.1.0-beta.0",
"@angular/http": "^4.1.0-beta.0",
"@angular/material": "2.0.0-beta.2",
"@angular/platform-browser": "^4.0.0",
"@angular/platform-browser-dynamic": "^4.0.0",
"@angular/platform-server": "^4.0.0",
"@angular/router": "^4.1.0-beta.0",
"@covalent/core": "^1.0.0-beta.3",
"@covalent/http": "1.0.0-beta.3",
"@swimlane/ngx-charts": "^5.0.0",
"angular2-material-datepicker": "^0.5.0",
"angular2-moment": "^1.2.0",
"core-js": "^2.4.1",
"d3": "^4.6.0",
"dexie": "^2.0.0-beta.10",
"hammerjs": "^2.0.8",
"moment": "^2.17.1",
"ng-daterangepicker": "^0.2.0",
"ng2-ckeditor": "^1.1.6",
"ng2-tag-input": "^1.0.5",
"raven-js": "^3.14.2",
"rxjs": "^5.1.0",
"zone.js": "^0.8.4"
},
"devDependencies": {
"@angular/cli": "^1.0.0",
"@angular/compiler-cli": "^4.0.0",
"@types/hammerjs": "2.0.30",
"@types/jasmine": "2.5.38",
"@types/node": "~6.0.60",
"@types/selenium-webdriver": "2.53.36",
"codelyzer": "2.0.0-beta.4",
"electron": "1.6.2",
"electron-connect": "",
"electron-installer-squirrel-windows": "",
"electron-packager": "",
"electron-rebuild": "^1.5.7",
"electron-squirrel-startup": "",
"electron-winstaller": "",
"ember-cli-inject-live-reload": "1.4.0",
"gulp": "3.9.1",
"gulp-help": "1.6.1",
"immutable": "^3.8.1",
"jasmine-core": "2.4.1",
"jasmine-spec-reporter": "2.5.0",
"karma": "1.2.0",
"karma-chrome-launcher": "2.0.0",
"karma-cli": "1.0.1",
"karma-jasmine": "1.0.2",
"karma-remap-istanbul": "0.2.1",
"ng2-pagination": "^2.0.0",
"phantomjs-prebuilt": "2.1.7",
"protractor": "4.0.5",
"randomstring": "",
"require-dir": "^0.3.1",
"run-sequence": "^1.2.2",
"ts-node": "~2.1.0",
"tslint": "^4.5.1",
"typescript": "~2.2.0"
},
"optionalDependencies": {}
}