This repository has been archived by the owner on Jul 19, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
124 lines (124 loc) · 3.58 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
{
"name": "demo-angular-client",
"version": "0.0.2",
"license": "MIT",
"author": {
"name": "Jonathon Adams"
},
"repository": {
"type": "git",
"url": "https://github.com/jadams88/angular-client"
},
"homepage": "https://github.com/jadams88/angular-client#readme",
"scripts": {
"android": "tns run android",
"ios": "tns run ios",
"mobile": "tns run",
"preview": "tns preview",
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"build:prod": "ng build --prod",
"test": "jest --coverage",
"test:watch": "jest --coverage --watch",
"test:push": "jest --ci=true --coverage --bail",
"test:staged": "jest --ci=true --passWithNoTests --coverage --bail --findRelatedTests",
"snapshot:update": "jest --updateSnapshot --testPathPattern",
"test:ci": "jest --coverage --maxWorkers=2",
"e2e:chrome": "testcafe -c 3 chrome e2e/src/ --r json:e2e/report.json",
"e2e:firefox": "testcafe -c 3 firefox e2e/src/",
"e2e:safari": "testcafe -c 3 safari e2e/src/",
"e2e:edge": "testcafe edge e2e/src/",
"format:fix": "pretty-quick --staged",
"lint": "ng lint demo",
"lint:fix": "ng lint demo --fix",
"lint-staged": "lint-staged --relative"
},
"husky": {
"hooks": {
"pre-commit": "run-s format:fix"
}
},
"lint-staged": {
"*.ts": [
"npm run lint:fix",
"git add"
]
},
"dependencies": {
"@angular/animations": "^8.2.1",
"@angular/cdk": "^8.1.3",
"@angular/common": "^8.2.1",
"@angular/compiler": "^8.2.1",
"@angular/core": "^8.2.1",
"@angular/flex-layout": "^8.0.0-beta.26",
"@angular/forms": "^8.2.1",
"@angular/material": "^8.1.3",
"@angular/platform-browser": "^8.2.1",
"@angular/platform-browser-dynamic": "^8.2.1",
"@angular/router": "^8.2.1",
"@ngrx/effects": "^8.2.0",
"@ngrx/entity": "^8.2.0",
"@ngrx/store": "^8.2.0",
"apollo-angular": "^1.5.0",
"apollo-angular-link-http": "^1.5.0",
"apollo-cache-inmemory": "^1.5.1",
"apollo-client": "^2.5.1",
"apollo-link-error": "^1.1.10",
"core-js": "^2.6.5",
"graphql": "^14.1.1",
"graphql-tag": "^2.10.1",
"hammerjs": "^2.0.8",
"jwt-decode": "^2.2.0",
"lodash.omit": "^4.5.0",
"nativescript-angular": "~8.2.0",
"nativescript-ui-sidedrawer": "7.0.0",
"reflect-metadata": "^0.1.13",
"rxjs": "~6.4.0",
"socket.io-client": "^2.1.1",
"tns-core-modules": "^6.0.6",
"zone.js": "0.9.1"
},
"devDependencies": {
"@angular-devkit/build-angular": "^0.802.2",
"@angular-devkit/core": "^8.2.2",
"@angular/cli": "^8.2.2",
"@angular/compiler-cli": "^8.2.2",
"@angular/language-service": "^8.2.2",
"@nativescript/schematics": "^0.7.0",
"@ngrx/schematics": "^8.2.0",
"@types/jest": "^24.0.11",
"@types/node": "^10.14.3",
"bcryptjs": "^2.4.3",
"codelyzer": "^5.1.0",
"husky": "^3.0.4",
"jest": "^24.5.0",
"jest-cli": "^24.5.0",
"jest-marbles": "^2.3.1",
"jest-preset-angular": "^7.0.1",
"jsonwebtoken": "^8.5.1",
"lint-staged": "^9.2.3",
"nativescript-dev-webpack": "^1.1.0",
"node-sass": "4.12.0",
"npm-run-all": "^4.1.3",
"prettier": "^1.16.4",
"pretty-quick": "^1.10.0",
"reset-css": "^4.0.1",
"rxjs-tslint": "^0.1.7",
"testcafe": "^1.1.0",
"testcafe-angular-selectors": "^0.3.2",
"ts-jest": "^24.0.0",
"ts-node": "^8.0.3",
"tslint": "^5.14.0",
"typescript": "^3.5.3"
},
"nativescript": {
"id": "org.nativescript.client",
"tns-ios": {
"version": "6.0.2"
},
"tns-android": {
"version": "6.0.1"
}
}
}