-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
101 lines (101 loc) · 4.13 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
{
"name": "@w11k/ngx-present-demo",
"version": "3.0.1",
"description": "Open Source, Angular Based Presentation Tool",
"author": "W11K GmbH, Germany",
"contributors": [
"Philipp Burgmer",
"Sascha Engmann"
],
"homepage": "https://github.com/w11k/ngx-present",
"repository": {
"type": "git",
"url": "https://github.com/w11k/ngx-present.git"
},
"keywords": [],
"scripts": {
"ng": "ng",
"start:app": "ng serve",
"start:lib": "ng build ngx-present --watch",
"start:theme": "ng build ngx-present-theme --watch",
"build": "rimraf ./dist && npm run build:lib && npm run build:theme && npm run build:app && npm run test",
"build:app": "ng build --prod",
"build:lib": "ng build ngx-present --prod && npm run build:lib-styles && npm run build:lib-assets && npm run build:readme",
"build:lib-styles": "cpx \"./projects/w11k/ngx-present/src/lib/style/**/*\" \"./dist/w11k/ngx-present/style\"",
"build:lib-assets": "cpx \"./projects/w11k/ngx-present/src/assets/**/*\" \"./dist/w11k/ngx-present/assets\"",
"build:readme": "cpx \"./readme.md\" \"./dist/w11k/ngx-present\"",
"build:theme": "ng build ngx-present-theme --prod && npm run build:theme-styles && npm run build:theme-assets",
"build:theme-styles": "cpx \"./projects/thecodecampus/ngx-present-theme/src/lib/style/**/*\" \"./dist/thecodecampus/ngx-present-theme/style\"",
"build:theme-assets": "cpx \"./projects/thecodecampus/ngx-present-theme/src/assets/**/*\" \"./dist/thecodecampus/ngx-present-theme/assets\"",
"build:stats": "ng build --prod --stats-json",
"publish:lib": "npm publish dist/w11k/ngx-present",
"publish:theme": "npm publish dist/thecodecampus/ngx-present-theme",
"publish": "rimraf ./dist && npm run build:lib && npm run build:theme && npm run publish:lib && npm run publish:theme",
"bundle-report": "webpack-bundle-analyzer dist/demo-app/stats.json",
"test": "ng test ngx-present --watch=false && ng test ngx-present-theme --watch=false",
"test:lib": "ng test ngx-present",
"test:theme": "ng test ngx-present-theme",
"lint": "ng lint",
"e2e": "ng e2e",
"bump": "bump --commit \"bump version to v\" package.json package-lock.json projects/w11k/ngx-present/package.json projects/thecodecampus/ngx-present-theme/package.json "
},
"private": true,
"dependencies": {
"@angular/animations": "^10.0.5",
"@angular/cdk": "^10.1.0",
"@angular/common": "^10.0.5",
"@angular/compiler": "^10.0.5",
"@angular/core": "^10.0.5",
"@angular/forms": "^10.0.5",
"@angular/material": "^10.1.0",
"@angular/platform-browser": "^10.0.5",
"@angular/platform-browser-dynamic": "^10.0.5",
"@angular/router": "^10.0.5",
"@thecodecampus/angular-material-theme": "^2.2.0",
"@w11k/ngx-componentdestroyed": "^5.0.2",
"@w11k/rx-ninja": "^4.1.0",
"@w11k/tydux": "^14.4.1",
"@w11k/tydux-angular": "^14.4.1",
"core-js": "^3.6.5",
"material-design-icons-iconfont": "^5.0.1",
"ngx-markdown": "^10.1.0",
"prismjs": "^1.20.0",
"prism-themes": "^1.4.0",
"redux": "^4.0.5",
"redux-devtools-extension": "^2.13.8",
"rxjs": "~6.6.0",
"zone.js": "~0.10.3"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.1000.4",
"@angular-devkit/build-ng-packagr": "~0.1000.4",
"@angular/cli": "~10.0.4",
"@angular/compiler-cli": "^10.0.5",
"@angular/language-service": "^10.0.5",
"@types/jasmine": "~3.5.11",
"@types/jasminewd2": "~2.0.8",
"@types/node": "^14.0.26",
"@types/prismjs": "^1.16.1",
"chai": "^4.1.2",
"codelyzer": "^6.0.0",
"cpx": "1.5.0",
"jasmine-core": "~3.6.0",
"jasmine-spec-reporter": "~5.0.0",
"karma": "~5.1.0",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage-istanbul-reporter": "~3.0.2",
"karma-jasmine": "~3.3.0",
"karma-jasmine-html-reporter": "^1.5.0",
"ng-mocks": "^10.1.1",
"ng-packagr": "^10.0.3",
"protractor": "~7.0.0",
"rimraf": "3.0.2",
"ts-node": "~8.10.2",
"tsickle": "0.39.1",
"tslib": "^2.0.0",
"tslint": "~6.1.0",
"typescript": "~3.9.7",
"version-bump-prompt": "6.0.6",
"webpack-bundle-analyzer": "^3.8.0"
}
}