-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
77 lines (77 loc) · 2.86 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
{
"name": "ngx-loadable",
"version": "3.0.0-next.12",
"scripts": {
"ng": "ng",
"start": "ng serve --project demo -o",
"start:prod": "npm run build && node ./projects/demo-server/server.js",
"build": "ng build loadable && ng build --project demo --prod && npm run schematics:build",
"schematics:build:ts": "tsc -p ./projects/schematics/tsconfig.json",
"schematics:build:collection": "cpy --parents --cwd='projects/schematics/src/' '**/*.json' '**/*.js' '**/*.js.*' '**/*.template' ../../../dist/loadable/schematics",
"schematics:build": "npm run schematics:build:ts && npm run schematics:build:collection",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e",
"docs": "ng build --prod --project demo --base-href '/ngx-loadable/'",
"build:lib": "ng build loadable",
"npm_pack": "cd dist/loadable && npm pack",
"copy-license": "cpy 'LICENSE' dist/loadable",
"copy-readme": "cpy 'README.md' dist/loadable",
"copy-files": "npm run copy-license && npm run copy-readme",
"package": "npm run build:lib && npm run schematics:build && npm run copy-files && npm run npm_pack"
},
"private": true,
"dependencies": {
"@angular/animations": "9.0.0-next.3",
"@angular/cdk": "^8.2.0",
"@angular/common": "9.0.0-next.3",
"@angular/compiler": "9.0.0-next.3",
"@angular/core": "9.0.0-next.3",
"@angular/elements": "9.0.0-next.3",
"@angular/forms": "9.0.0-next.3",
"@angular/material": "^8.2.0",
"@angular/platform-browser": "9.0.0-next.3",
"@angular/platform-browser-dynamic": "9.0.0-next.3",
"@angular/router": "9.0.0-next.3",
"@ngx-starter-kit/ngx-utils": "^0.0.8",
"compression": "^1.7.4",
"core-js": "^3.1.4",
"cpy-cli": "^2.0.0",
"date-fns": "^2.0.0-alpha.27",
"express": "^4.17.1",
"highlight.js": "^9.15.10",
"intersection-observer": "^0.7.0",
"lodash": "^4.17.15",
"moment": "^2.24.0",
"ngx-highlightjs": "^3.0.3",
"ngx-perimeter": "^0.0.1",
"rxjs": "~6.5.2",
"tslib": "^1.10.0",
"zone.js": "~0.10.1"
},
"devDependencies": {
"@angular-devkit/build-angular": "0.900.0-next.0",
"@angular-devkit/build-ng-packagr": "0.900.0-next.0",
"@angular/cli": "9.0.0-next.0",
"@angular/compiler-cli": "9.0.0-next.3",
"@angular/language-service": "9.0.0-next.3",
"@types/jasmine": "~3.4.0",
"@types/jasminewd2": "~2.0.3",
"@types/node": "~12.7.1",
"all-contributors-cli": "^6.9.1",
"codelyzer": "^5.0.1",
"jasmine-core": "~3.4.0",
"jasmine-spec-reporter": "~4.2.1",
"karma": "~4.2.0",
"karma-chrome-launcher": "~3.0.0",
"karma-coverage-istanbul-reporter": "~2.1.0",
"karma-jasmine": "~2.0.1",
"karma-jasmine-html-reporter": "^1.4.2",
"ng-packagr": "^5.5.1",
"protractor": "~5.4.0",
"ts-node": "~8.3.0",
"tsickle": "^0.36.0",
"tslint": "~5.18.0",
"typescript": "~3.5.3"
}
}