-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
94 lines (94 loc) · 3.1 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
{
"name": "@nwx/http-cache",
"version": "0.0.5",
"repository": {
"type": "git",
"url": "git+https://github.com/neekware/nwx-http-cache.git"
},
"keywords": [
"ng",
"angular",
"http",
"cache",
"http-cache",
"reactive",
"store",
"redux"
],
"author": "Val Neekman",
"contributors": [],
"license": "MIT",
"bugs": {
"url": "https://github.com/neekware/nwx-http-cache/issues"
},
"homepage": "https://github.com/neekware/nwx-http-cache",
"scripts": {
"###----- http-cache Module -----###": "http-cache module commands",
"pkg:build": "ng build http-cache --prod",
"pkg:test": "ng test http-cache --watch=false",
"pkg:lint": "ng lint http-cache",
"###----- Stating -----###": "Staging app commands",
"app:serve": "ng serve web",
"app:build": "ng build --prod web",
"app:test": "yarn pkg:build && ng test web --watch=false",
"app:e2e": "ng e2e web-e2e",
"app:lint": "ng lint web",
"###----- CI -----###": "Continuous integration",
"app:test:ci": "ng test web --browsers ChromeHeadless --watch=false",
"app:e2e:ci": "ng e2e web-e2e --port 5300 --protractor-config=apps/web/e2e/protractor.conf.ci.js",
"pkg:test:ci": "ng test http-cache --browsers ChromeHeadless --watch=false --code-coverage",
"ci": "yarn pkg:lint && yarn pkg:build && yarn pkg:test:ci",
"ci:all": "yarn ci && yarn app:lint && yarn app:test:ci && yarn app:e2e:ci",
"###----- Tools -----###": "Tool commands",
"format": "node node_modules/.bin/prettier --single-quote --print-width 100 --write 'apps/**/src/*.{ts,css,scss,json}' 'pkgs/**/*.{ts,css,scss,json}'",
"release": "node ./tools/release.js ",
"update": "node tools/update.js -m yarn"
},
"private": true,
"dependencies": {
"@angular/common": "^8.1.0",
"@angular/compiler": "^8.1.0",
"@angular/core": "^8.1.0",
"@angular/forms": "^8.1.0",
"@angular/platform-browser": "^8.1.0",
"@angular/platform-browser-dynamic": "^8.1.0",
"@angular/router": "^8.1.0",
"@nwx/cfg": "^2.0.2",
"@nwx/logger": "^1.0.4",
"core-js": "^3.1.4",
"lodash": "^4.17.13",
"rxjs": "^6.5.2",
"uuid": "^3.3.2",
"zone.js": "^0.9.1"
},
"devDependencies": {
"@angular-devkit/build-angular": "^0.801.0",
"@angular-devkit/build-ng-packagr": "^0.801.0",
"@angular/cli": "^8.1.0",
"@angular/compiler-cli": "^8.1.0",
"@angular/language-service": "^8.1.0",
"@types/jasmine": "^3.3.13",
"@types/jasminewd2": "^2.0.6",
"@types/node": "^12.0.10",
"codelyzer": "^5.1.0",
"commander": "^2.20.0",
"coveralls": "^3.0.4",
"jasmine-core": "^3.4.0",
"jasmine-spec-reporter": "^4.2.1",
"karma": "^4.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage-istanbul-reporter": "^2.0.5",
"karma-jasmine": "^2.0.1",
"karma-jasmine-html-reporter": "^1.4.2",
"ng-packagr": "^5.3.0",
"prettier": "^1.18.2",
"protractor": "^5.4.2",
"semver": "^6.2.0",
"shelljs": "^0.8.3",
"ts-node": "^8.3.0",
"tsickle": "^0.35.0",
"tslib": "^1.10.0",
"tslint": "^5.18.0",
"typescript": ">=3.4.0 <3.5.0"
}
}