-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 3.1 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 3.1 KB
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
{
"name": "deliveryapp-angular",
"nativescript": {
"id": "org.nativescript.deliveryapp",
"tns-ios": {
"version": "6.5.0"
},
"tns-android": {
"version": "6.5.0"
}
},
"version": "1.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build --prod",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "ng lint",
"e2e": "ng e2e",
"android": "tns run android",
"ios": "tns run ios --device E8988397-E42D-4653-8414-8E0F5E5F8D02",
"build:android": "tns build android --bundle --no-hmr --env.uglify --env.aot --env.snapshot",
"prepare:ios": "tns prepare ios --bundle --no-hmr --env.uglify --env.aot",
"api-dev:up": "docker-compose -f \"docker-compose.yml\" --env-file .env up -d",
"api-dev:down": "docker-compose -f \"docker-compose.yml\" down"
},
"private": true,
"dependencies": {
"@angular/animations": "~10.0.2",
"@angular/cdk": "^10.0.1",
"@angular/common": "~10.0.2",
"@angular/compiler": "~10.0.2",
"@angular/core": "~10.0.2",
"@angular/forms": "~10.0.2",
"@angular/platform-browser": "~10.0.2",
"@angular/platform-browser-dynamic": "~10.0.2",
"@angular/router": "~10.0.2",
"@ngrx/effects": "^9.2.0",
"@ngrx/router-store": "^9.2.0",
"@ngrx/store": "^9.2.0",
"core-js": "^3.6.5",
"firebase": "^7.15.5",
"font-awesome": "^4.7.0",
"inputmask": "^5.0.3",
"inputmask.phone": "^1.0.5",
"lodash-es": "^4.17.15",
"nativescript-angular": "^8.21.0",
"nativescript-feedback": "^1.5.0",
"nativescript-iqkeyboardmanager": "^1.5.1",
"nativescript-loading-indicator": "^2.5.2",
"nativescript-ngx-fonticon": "^6.0.3",
"nativescript-theme-core": "~1.0.6",
"nativescript-ui-autocomplete": "^6.0.1",
"nativescript-ui-dataform": "^6.1.0",
"nativescript-ui-listview": "^8.2.0",
"nativescript-ui-sidedrawer": "^8.0.1",
"primeicons": "^4.0.0",
"primeng": "^9.1.2",
"qs": "^6.9.4",
"reflect-metadata": "~0.1.13",
"rxjs": "^6.6.0",
"socket.io-client": "^2.3.0",
"tns-core-modules": "^6.5.8",
"tslib": "^2.0.0",
"zone.js": "^0.10.3"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.1000.1",
"@angular/cli": "^10.0.1",
"@angular/compiler-cli": "10.0.2",
"@nativescript/schematics": "~9.0.0",
"@ngrx/schematics": "^9.2.0",
"@ngrx/store-devtools": "^9.2.0",
"@types/inputmask": "^4.0.1",
"@types/jest": "^26.0.3",
"@types/lodash-es": "^4.17.3",
"@types/node": "^14.0.14",
"@types/qs": "^6.9.3",
"@types/socket.io-client": "^1.4.33",
"codelyzer": "^6.0.0",
"jest": "^26.1.0",
"jest-preset-angular": "^8.2.1",
"jest-zone-patch": "0.0.10",
"nativescript-dev-webpack": "^1.5.1",
"node-sass": "^4.14.1",
"prettier": "^2.0.5",
"protractor": "~7.0.0",
"rxjs-tslint-rules": "^4.33.3",
"ts-node": "~8.10.2",
"tslint": "~6.1.2",
"tslint-angular": "^3.0.2",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.3.0",
"tslint-sonarts": "^1.9.0",
"typescript": "~3.9.6"
}
}