-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 3.36 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 3.36 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
{
"name": "sciddle",
"version": "1.11.0",
"authorCode": "Florian Schwanz",
"authorCodeUrl": "https://github.com/florianschwanz",
"authorOriginal": "Anne Braun, Anne Dippel, Thomas Klose, Britta Kussin, Dennis Rätzel",
"authorContent": "Dennis Rätzel, Kiri Mochrie, Jana Mochrie und Julia Mochrie",
"authorGraphics": "Britta Kussin",
"authorGraphicsUrl": "https://www.britta-kussin.de/start-sciddle-the-science-riddle",
"authorScientificSupervision": "Maria Zeitz (Potsdam-Institut für Klimafolgenforschung)",
"githubUrl": "https://github.com/sciddle/sciddle-ng",
"licenseCode": "AGPLv3",
"licenseContent": "CC BY 4.0",
"scripts": {
"ng": "ng",
"clean": "rimraf ./dist",
"start": "ng serve --configuration=regular",
"start-regular": "ng serve --configuration=regular",
"start-regular-production": "ng serve --configuration=regular-production",
"start-s4f": "ng serve --configuration=s4f",
"start-s4f-production": "ng serve --configuration=s4f-production",
"build": "ng build",
"build:ci": "npm run clean && npm run build",
"build-regular-prod": "ng build --configuration=regular-production",
"build-s4f-prod": "ng build --configuration=s4f-production",
"test": "ng test --reporters junit --code-coverage",
"lint": "ng lint",
"lint-junit": "./node_modules/.bin/tslint -c ./tslint.json \"src/**/*.ts\" --format junit --out reports/lint-results.xml",
"compodoc": "compodoc src/app -p tsconfig.json --output reports/documentation/",
"e2e": "ng e2e",
"release-only-web-s4f": "mkdirp ./release && cd dist && bestzip ./../../release/${npm_package_name}-s4f-web-${npm_package_version}.zip ./*"
},
"private": true,
"dependencies": {
"@angular/animations": "^15.2.10",
"@angular/cdk": "^15.2.9",
"@angular/common": "^15.2.10",
"@angular/compiler": "^15.2.10",
"@angular/core": "^15.2.10",
"@angular/forms": "^15.2.10",
"@angular/material": "^15.2.9",
"@angular/platform-browser": "^15.2.10",
"@angular/platform-browser-dynamic": "^15.2.10",
"@angular/router": "^15.2.10",
"@angular/service-worker": "^15.2.10",
"@ngneat/transloco": "~4.2.7",
"@ngx-translate/core": "~13.0.0",
"@ngx-translate/http-loader": "~6.0.0",
"angular2-swing": "^0.14.0",
"core-js": "^2.6.12",
"highlight.js": "^9.18.5",
"markdown-it": "12.3.2",
"pouchdb": "^7.2.2",
"pouchdb-find": "^7.2.2",
"pouchdb-upsert": "^2.2.0",
"rxjs": "^6.6.7",
"tslib": "^1.14.1",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "^15.2.11",
"@angular/cli": "^15.2.11",
"@angular/compiler-cli": "^15.2.10",
"@angular/language-service": "^15.2.10",
"@angular/localize": "^15.2.10",
"@compodoc/compodoc": "^1.1.9",
"@types/jasmine": "^2.8.17",
"@types/jasminewd2": "^2.0.9",
"@types/node": "^8.10.66",
"bestzip": "^2.2.0",
"codelyzer": "^6.0.2",
"git": "^0.1.5",
"jasmine-core": "~2.99.1",
"jasmine-spec-reporter": "~4.2.1",
"karma": "^6.3.4",
"karma-chrome-launcher": "~2.2.0",
"karma-coverage-istanbul-reporter": "^2.0.6",
"karma-jasmine": "~1.1.2",
"karma-jasmine-html-reporter": "^0.2.2",
"karma-junit-reporter": "^1.2.0",
"mkdirp": "^1.0.4",
"protractor": "^7.0.0",
"replace": "^1.2.1",
"ts-node": "~7.0.0",
"tslint": "^5.20.1",
"typescript": "~4.8.1"
}
}