-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 3.09 KB
/
package.json
File metadata and controls
105 lines (105 loc) · 3.09 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
100
101
102
103
104
105
{
"name": "transcrypt-app",
"version": "3.1.9",
"scripts": {
"ng": "ng",
"start": "ng serve",
"install:ci": "npm ci && npm --prefix functions ci",
"build": "ng build",
"build:prod": "ng build --prod",
"build:ci": "ng build --prod && npm --prefix functions run build",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e",
"semantic-release": "semantic-release",
"startSsl": "ng serve --ssl --ssl-cert ssl/server.crt --ssl-key ssl/server.key --host 0.0.0.0",
"dev": "npm run startSsl"
},
"private": true,
"dependencies": {
"@angular/animations": "~10.1.2",
"@angular/cdk": "^10.2.6",
"@angular/common": "~10.1.2",
"@angular/compiler": "~10.1.2",
"@angular/core": "~10.1.2",
"@angular/fire": "^6.0.2",
"@angular/flex-layout": "^10.0.0-beta.32",
"@angular/forms": "~10.1.2",
"@angular/material": "^10.2.6",
"@angular/platform-browser": "~10.1.2",
"@angular/platform-browser-dynamic": "~10.1.2",
"@angular/router": "~10.1.2",
"@angular/service-worker": "~10.1.2",
"docx": "^5.3.0",
"file-saver": "^2.0.2",
"firebase": "^7.23.0",
"html-entities": "^1.3.1",
"ngx-paypal": "^6.2.0",
"pdfmake": "^0.1.68",
"query-string": "^6.13.5",
"rxjs": "~6.6.0",
"tslib": "^2.0.0",
"zone.js": "~0.10.2"
},
"devDependencies": {
"@angular-devkit/architect": ">= 0.900 < 0.1100",
"@angular-devkit/build-angular": "^0.1100.5",
"@angular/cli": "~10.1.2",
"@angular/compiler-cli": "~10.1.2",
"@semantic-release/git": "^9.0.0",
"@semantic-release/npm": "^7.1.3",
"@types/file-saver": "^2.0.1",
"@types/jasmine": "~3.5.0",
"@types/jasminewd2": "~2.0.3",
"@types/jsonwebtoken": "^8.5.0",
"@types/node": "^12.11.1",
"@types/pdfmake": "^0.1.15",
"@types/query-string": "^6.3.0",
"@types/stripe-v3": "^3.1.21",
"codelyzer": "^6.0.0",
"firebase-tools": "^9.1.0",
"fuzzy": "^0.1.3",
"inquirer": "^6.2.2",
"inquirer-autocomplete-prompt": "^1.0.1",
"jasmine-core": "~3.6.0",
"jasmine-spec-reporter": "~5.0.0",
"karma": "~5.0.0",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage-istanbul-reporter": "~3.0.2",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "^1.5.0",
"last-release-git": "0.0.3",
"open": "^7.0.3",
"protractor": "~7.0.0",
"semantic-release": "^17.4.4",
"ts-node": "~8.3.0",
"tslint": "~6.1.0",
"typescript": "~4.0.2"
},
"repository": {
"type": "git",
"url": "https://github.com/jacob-ian/TranscryptApp.git"
},
"publishConfig": {
"access": "restricted"
},
"release": {
"getLastRelease": "last-release-git",
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
"@semantic-release/github",
[
"@semantic-release/git",
{
"assets": [
"package.json",
"package-lock.json"
],
"message": "chore(release): ${nextRelease.version} [skip ci] \n\n${nextRelease.notes}"
}
]
]
}
}