-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
104 lines (104 loc) · 3.65 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
{
"name": "ngx-components",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"ng": "ng",
"start": "ng serve",
"demo": "ng serve --project=demo-page",
"build": "ng build",
"build:lib": "ng-packagr",
"build-docs": "ng build --project=demo-page --base-href /ngx-components/dist/apps/demo-page/",
"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",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook -o dist/storybook "
},
"private": true,
"dependencies": {
"@angular/animations": "^7.2.15",
"@angular/cdk": "^7.3.7",
"@angular/common": "^7.2.15",
"@angular/compiler": "^7.2.15",
"@angular/core": "^7.2.15",
"@angular/forms": "^7.2.15",
"@angular/platform-browser": "^7.2.15",
"@angular/platform-browser-dynamic": "^7.2.15",
"@angular/router": "^7.2.15",
"@nebular/bootstrap": "^3.5.0",
"@nebular/theme": "3.5.0",
"@ng-bootstrap/ng-bootstrap": "^4.1.3",
"@ngrx/effects": "~7.4.0",
"@ngrx/router-store": "~7.4.0",
"@ngrx/store": "~7.4.0",
"@nrwl/nx": "~7.8.6",
"@types/node": "^8.10.48",
"bootstrap": "^4.3.1",
"core-js": "^2.6.8",
"jquery": "^3.4.1",
"nebular-icons": "^1.1.0",
"popper.js": "^1.15.0",
"rxjs": "6.5.2",
"zone.js": "^0.8.26"
},
"devDependencies": {
"@angular-devkit/build-angular": "0.13.9",
"@angular-devkit/build-ng-packagr": "~0.13.0",
"@angular/cli": "7.3.9",
"@angular/compiler-cli": "^7.2.15",
"@angular/language-service": "^7.2.15",
"@babel/core": "^7.4.5",
"@ngrx/store-devtools": "~7.4.0",
"@nrwl/builders": "~7.8.6",
"@nrwl/schematics": "~7.8.6",
"@schematics/angular": "^7.3.9",
"@storybook/addon-actions": "^5.0.11",
"@storybook/addon-links": "^5.0.11",
"@storybook/addon-notes": "^5.0.11",
"@storybook/addons": "^5.0.11",
"@storybook/angular": "^5.0.11",
"@types/jasmine": "~2.8.6",
"@types/jasminewd2": "~2.0.3",
"@types/jest": "23.0.0",
"babel-loader": "^8.0.6",
"codelyzer": "~4.5.0",
"dotenv": "6.2.0",
"jasmine-core": "~2.99.1",
"jasmine-marbles": "0.4.0",
"jasmine-spec-reporter": "~4.2.1",
"jest": "24.8.0",
"jest-preset-angular": "7.1.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": "^4.0.0",
"ngrx-store-freeze": "0.2.4",
"npm-run-all": "^4.1.5",
"prettier": "^1.17.1",
"protractor": "~5.4.0",
"ts-node": "^7.0.1",
"tsickle": "^0.34.0",
"tslib": "^1.9.0",
"tslint": "~5.16.0",
"typescript": "^3.2.0"
}
}