-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
113 lines (113 loc) · 4.33 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": "referee-course-test",
"version": "1.16.2",
"author": "Sebastien Chassande-Barrioz",
"homepage": "https://exam.coachreferee.com",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "npm run pre-build && rm -rf www && ng build --configuration=production && npm run post-build",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e",
"pre-build": "node ./replace.build.js",
"post-build": "node ./clean.apikey.js",
"build-test": " rm -rf www/test && ng build --configuration=production,test",
"commit-version": "git commit -a -m 'version'",
"deploy": "firebase deploy --only hosting",
"deploy-functions": "firebase deploy --only functions",
"build-functions": "cd functions && pnpm run lint && pnpm run build",
"build-deploy": "npm run build && npm run deploy",
"release-patch": "npm version patch && npm run build-deploy && npm run commit-version",
"release-minor": "npm version minor && npm run build-deploy && npm run commit-version",
"release-major": "npm version major && npm run build-deploy && npm run commit-version",
"deploy-test": "npm run pre-build && npm run build-test && npm run post-build && npm run deploy"
},
"private": true,
"dependencies": {
"@angular/animations": "^15.2.10",
"@angular/common": "^15.2.9",
"@angular/core": "^15.2.10",
"@angular/fire": "7.5",
"@angular/forms": "^15.2.10",
"@angular/localize": "^15.2.10",
"@angular/material": "^15.2.9",
"@angular/platform-browser": "^15.2.10",
"@angular/platform-browser-dynamic": "^15.2.10",
"@angular/pwa": "^15.2.8",
"@angular/router": "^15.2.10",
"@angular/service-worker": "^15.2.10",
"@ionic/angular": "^7.0.7",
"@ionic/pwa-elements": "^3.1.1",
"@ionic/storage": "^3.0.6",
"@ionic/storage-angular": "^3.0.6",
"@ngx-translate/core": "^14.0.0",
"@ngx-translate/http-loader": "^7.0.0",
"@types/nodemailer": "^6.4.4",
"chart.js": "^3.9.1",
"cordova-sqlite-storage": "^6.0.0",
"core-js": "^3.20.1",
"csvtojson": "^2.0.10",
"dot-properties": "^1.0.1",
"firebase": "^9.22.0",
"hammerjs": "^2.0.8",
"moment": "^2.29.1",
"ng2-charts": "^3.1.2",
"ngx-markdown": "^15.1.2",
"ngx-material-timepicker": "^5.5.3",
"ngx-toastr": "^14.2.1",
"rxfire": "^6.0.0",
"rxjs": "^7.5.0",
"swiper": "^9.3.2",
"tslib": "^2.2.0",
"typescript-logging": "^1.0.0",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "^15.2.10",
"@angular-eslint/builder": "~15.2.1",
"@angular-eslint/eslint-plugin": "~15.2.1",
"@angular-eslint/eslint-plugin-template": "~15.2.1",
"@angular-eslint/template-parser": "~15.2.1",
"@angular/cli": "^15.2.10",
"@angular/compiler": "^15.2.10",
"@angular/compiler-cli": "^15.2.10",
"@angular/language-service": "^15.2.10",
"@ionic/angular-toolkit": "^9.0.0",
"@types/jasmine": "~3.6.0",
"@types/jasminewd2": "~2.0.3",
"@types/node": "^12.11.1",
"eslint": "^7.6.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jsdoc": "30.7.6",
"eslint-plugin-prefer-arrow": "1.2.2",
"gulp": "^4.0.2",
"gulp-cheerio": "^1.0.0",
"gulp-load-plugins": "^2.0.6",
"gulp-modify-file": "^1.0.1",
"gulp-rename": "^2.0.0",
"gulp-run": "^1.7.1",
"gulp4-run-sequence": "^1.0.1",
"jasmine-core": "~4.6.0",
"jasmine-spec-reporter": "~5.0.0",
"karma": "~6.3.9",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage": "~2.0.3",
"karma-coverage-istanbul-reporter": "~3.0.2",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "^1.5.0",
"merge-stream": "^2.0.0",
"protractor": "~7.0.0",
"replace-in-file": "^6.2.0",
"run-sequence": "^2.2.1",
"through2": "^4.0.2",
"ts-node": "~8.3.0",
"typescript": "4.8"
},
"description": "Web application of exam",
"cordova": {
"plugins": {
"cordova-sqlite-storage": {}
}
}
}