This repository has been archived by the owner on Jan 30, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
103 lines (103 loc) · 4.09 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
{
"name": "ngx-table",
"version": "0.0.1",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/TeamHive/ngx-table"
},
"config": {
"githubScope": "teamhive"
},
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"build:prod": "npm run lint && npm run test && npm run build:package",
"build:package": "npm run copy && ng-packagr -p libs/$npm_package_name/package.json",
"gh-pages": "npm run copy && npm run build:gh-pages && npm run publish:gh-pages",
"build:gh-pages": "ng build --prod --project=demo-web --base-href https://$npm_package_config_githubScope.github.io/$npm_package_name/",
"publish:gh-pages": "ngh --dir=dist/apps/demo-web",
"package:version": "cd libs/$npm_package_name && npm version",
"package:version:git": "npm run git:commit:version && npm run git:tag && npm run git:push",
"publish:package": "npm run build:package && npm run var:pipe-dist-location -- npm publish $1 --access public",
"test": "ng test",
"lint": "./node_modules/.bin/nx lint && ng lint",
"e2e": "ng e2e",
"affected:apps": "./node_modules/.bin/nx affected:apps",
"affected:libs": "./node_modules/.bin/nx affected:libs",
"affected:build": "./node_modules/.bin/nx affected:build",
"affected:e2e": "./node_modules/.bin/nx affected:e2e",
"affected:test": "./node_modules/.bin/nx affected:test",
"affected:lint": "./node_modules/.bin/nx affected:lint",
"affected:dep-graph": "./node_modules/.bin/nx affected:dep-graph",
"affected": "./node_modules/.bin/nx affected",
"format": "./node_modules/.bin/nx format:write",
"format:write": "./node_modules/.bin/nx format:write",
"format:check": "./node_modules/.bin/nx format:check",
"update": "ng update @nrwl/schematics",
"update:check": "ng update",
"workspace-schematic": "./node_modules/.bin/nx workspace-schematic",
"dep-graph": "./node_modules/.bin/nx dep-graph",
"help": "./node_modules/.bin/nx help",
"git:commit:version": "git add libs/$npm_package_name/package.json && npm run var:pipe-package-version -- git commit -m $1",
"git:tag": "npm run var:pipe-package-version -- git tag $1",
"git:push": "git push && git push --tags",
"var:pipe-package-version": "bash ./tools/scripts/get-prop.sh $npm_package_name version | xargs ",
"var:pipe-dist-location": "bash ./tools/scripts/get-prop.sh $npm_package_name name dist/ | xargs ",
"copy": "copyfiles README.md libs/$npm_package_name"
},
"dependencies": {
"@angular/animations": "^7.0.0",
"@angular/cdk": "^7.3.6",
"@angular/common": "^7.0.0",
"@angular/compiler": "^7.0.0",
"@angular/core": "^7.0.0",
"@angular/flex-layout": "^7.0.0-beta.24",
"@angular/forms": "^7.0.0",
"@angular/material": "^7.3.6",
"@angular/platform-browser": "^7.0.0",
"@angular/platform-browser-dynamic": "^7.0.0",
"@angular/router": "^7.0.0",
"@ngrx/effects": "^7.4.0",
"@ngrx/router-store": "^7.4.0",
"@ngrx/store": "^7.4.0",
"@ngx-docs/example": "^0.1.6",
"@ngx-prism/core": "^2.0.1",
"@nrwl/nx": "7.3.0",
"core-js": "^2.5.4",
"lodash-es": "^4.17.11",
"marked": "^0.6.1",
"ngx-markdown": "^7.1.4",
"prismjs": "^1.16.0",
"rxjs": "~6.3.3",
"zone.js": "^0.8.26"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.11.0",
"@angular/cli": "~7.1.0",
"@angular/compiler-cli": "^7.0.0",
"@angular/language-service": "^7.0.0",
"@nrwl/schematics": "7.3.0",
"@types/jasmine": "~2.8.6",
"@types/jasminewd2": "~2.0.3",
"@types/node": "^8.10.45",
"angular-cli-ghpages": "^0.5.3",
"codelyzer": "~4.5.0",
"copyfiles": "^2.1.0",
"jasmine-core": "~2.99.1",
"jasmine-marbles": "0.4.0",
"jasmine-spec-reporter": "~4.2.1",
"karma": "~3.0.0",
"karma-chrome-launcher": "~2.2.0",
"karma-coverage-istanbul-reporter": "~2.0.1",
"karma-jasmine": "~1.1.0",
"karma-jasmine-html-reporter": "^0.2.2",
"ng-packagr": "^5.0.1",
"prettier": "1.15.2",
"protractor": "~5.4.0",
"ts-node": "~7.0.0",
"tslint": "~5.11.0",
"typescript": "~3.1.3"
}
}