public-gateway-cacher/package.json

62 lines
2.0 KiB
JSON
Raw Normal View History

2019-11-29 02:20:50 +00:00
{
"name": "public-gateway-cacher",
2020-07-10 06:12:17 +00:00
"version": "2.1.0",
2019-11-29 02:20:50 +00:00
"scripts": {
"ng": "ng",
2019-11-29 07:26:41 +00:00
"start": "ng serve --ssl",
2019-12-03 06:02:57 +00:00
"build": "ng build --base-href /",
"build:prod": "ng build --configuration=production --base-href /",
"build:gitlab": "ng build --configuration=gitlab --base-href /public-gateway-cacher/",
"build:ipfs": "ng build --configuration=ipfs",
2019-11-29 02:20:50 +00:00
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e",
2020-07-10 04:53:52 +00:00
"publish:ipfs": "yarn run build:ipfs && ipfs add --recursive --chunker=buzhash --cid-version=1 dist/angular",
"postinstall": "ngcc"
2019-11-29 02:20:50 +00:00
},
"private": false,
"dependencies": {
"@angular/animations": "~11.2.6",
"@angular/cdk": "~11.2.5",
"@angular/common": "~11.2.6",
"@angular/compiler": "~11.2.6",
"@angular/core": "~11.2.6",
"@angular/flex-layout": "^11.0.0-beta.33",
"@angular/forms": "~11.2.6",
"@angular/material": "^11.2.5",
"@angular/platform-browser": "~11.2.6",
"@angular/platform-browser-dynamic": "~11.2.6",
"@angular/router": "~11.2.6",
2020-07-08 01:11:46 +00:00
"bootstrap": "^4.5.0",
"ipfs-css": "^1.2.0",
2020-07-10 05:00:13 +00:00
"rxjs": "~6.6.0",
"tslib": "^2.0.0",
"zone.js": "~0.10.3"
2019-11-29 02:20:50 +00:00
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.1102.5",
"@angular/cli": "~11.2.5",
"@angular/compiler-cli": "~11.2.6",
"@angular/language-service": "~11.2.6",
"@types/jasmine": "~3.6.0",
2020-07-10 04:53:52 +00:00
"@types/jasminewd2": "~2.0.3",
"@types/node": "^12.11.1",
2020-07-10 02:29:51 +00:00
"codelyzer": "^6.0.0",
"jasmine-core": "~3.6.0",
"jasmine-spec-reporter": "~5.0.0",
"karma": "~6.2.0",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage-istanbul-reporter": "~3.0.2",
"karma-jasmine": "~4.0.0",
2020-07-10 05:24:52 +00:00
"karma-jasmine-html-reporter": "^1.5.0",
"protractor": "~7.0.0",
2020-07-10 02:29:51 +00:00
"rxjs-tslint-rules": "^4.33.3",
2020-07-10 05:48:31 +00:00
"ts-node": "~8.10.2",
2020-07-10 05:24:52 +00:00
"tslint": "~6.1.2",
2019-11-29 02:20:50 +00:00
"tslint-consistent-codestyle": "^1.16.0",
2020-07-10 02:29:51 +00:00
"tslint-origin-ordered-imports-rule": "^1.3.0-0",
2019-11-29 02:20:50 +00:00
"tslint-rxjs-subject-restrictions-rule": "^1.0.4",
"typescript": "~4.1.5"
2019-11-29 02:20:50 +00:00
}
2020-07-10 05:24:52 +00:00
}