-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
119 lines (119 loc) · 4.05 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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "angular-example-app",
"version": "6.1.0",
"license": "MIT",
"scripts": {
"start": "ng serve --open",
"http-server": "http-server dist/ -c-1",
"build": "ng build",
"build:library": "ng build ngx-example-library",
"deploy": "ng build --prod && npx ngh",
"test": "ng test",
"jest": "jest --coverage",
"e2e": "ng e2e",
"lint": "ng lint",
"ci": "npm run lint && npm run test && npm run e2e",
"extract": "ngx-translate-extract --input ./src/app --output ./src/assets/i18n/*.json --sort --format namespaced-json --format-indentation ' ' --marker _",
"translate": "node ./scripts/translate.js",
"bundle-report": "ng build --prod --stats-json && webpack-bundle-analyzer dist/stats.json",
"release:minor": "standard-version --release-as minor && git push --follow-tags origin master",
"release:major": "standard-version --release-as major && git push --follow-tags origin master",
"docker": "docker build -t angularexampleapp . && docker run -d -p 4200:80 angularexampleapp",
"update": "ng update --all --force",
"compare": "echo 'Karma' && time npm run test angular-example-app > /dev/null 2>&1 && echo '------------------' && echo 'Jest' && time npm run jest > /dev/null 2>&1"
},
"private": true,
"engines": {
"node": ">= 8.9.0",
"npm": ">= 5.0.0"
},
"dependencies": {
"@angular/animations": "6.1.2",
"@angular/common": "6.1.2",
"@angular/compiler": "6.1.2",
"@angular/core": "6.1.2",
"@angular/flex-layout": "6.0.0-beta.17",
"@angular/forms": "6.1.2",
"@angular/http": "6.1.2",
"@angular/platform-browser": "6.1.2",
"@angular/platform-browser-dynamic": "6.1.2",
"@angular/router": "6.1.2",
"classlist.js": "1.1.20150312",
"core-js": "2.5.7",
"rxjs": "6.2.2",
"rxjs-compat": "6.2.2",
"web-animations-js": "2.3.1",
"zone.js": "0.8.26"
},
"devDependencies": {
"@angular-devkit/build-angular": "0.7.3",
"@angular-devkit/build-ng-packagr": "0.7.3",
"@angular/cdk": "6.4.3",
"@angular/cli": "6.1.3",
"@angular/compiler-cli": "6.1.2",
"@angular/language-service": "6.1.2",
"@angular/material": "6.4.3",
"@angular/platform-server": "6.1.2",
"@angular/service-worker": "6.1.2",
"@biesbjerg/ngx-translate-extract": "2.3.4",
"@ismaestro/ngx-example-library": "1.0.0",
"@ngx-translate/core": "10.0.2",
"@ngx-translate/http-loader": "3.0.1",
"@types/html2canvas": "0.0.34",
"@types/jasmine": "2.8.9",
"@types/jasminewd2": "2.0.5",
"@types/node": "10.11.4",
"angular-cli-ghpages": "0.5.3",
"axios": "0.18.0",
"babel-preset-env": "^1.7.0",
"bowser": "2.0.0-beta.3",
"codelyzer": "4.5.0",
"coveralls": "3.0.2",
"deepmerge": "2.2.1",
"fs": "0.0.1-security",
"hammerjs": "2.0.8",
"html2canvas": "1.0.0-alpha.12",
"http-server": "0.11.1",
"jasmine-core": "3.2.1",
"jasmine-spec-reporter": "4.2.1",
"jest": "^23.6.0",
"jest-preset-angular": "^6.0.1",
"karma": "3.0.0",
"karma-chrome-launcher": "2.2.0",
"karma-cli": "1.0.1",
"karma-coverage-istanbul-reporter": "2.0.4",
"karma-jasmine": "1.1.2",
"karma-jasmine-html-reporter": "1.3.1",
"karma-remap-istanbul": "0.6.0",
"karma-scss-preprocessor": "3.0.0",
"moment": "2.22.2",
"ng-packagr": "4.2.0",
"ngx-store": "2.0.0",
"node-sass": "4.9.3",
"path": "0.12.7",
"protractor": "5.4.1",
"standard-version": "4.4.0",
"ts-helpers": "1.1.2",
"ts-node": "7.0.1",
"tsickle": "0.33.0",
"tslib": "1.9.3",
"tslint": "5.11.0",
"typescript": "2.7.2",
"webpack-bundle-analyzer": "3.0.2"
},
"jest": {
"preset": "jest-preset-angular",
"setupTestFrameworkScriptFile": "<rootDir>/src/setupJest.ts",
"testPathIgnorePatterns": [
"projects"
],
"transform": {
"^.+\\.(ts|html)$": "<rootDir>/node_modules/jest-preset-angular/preprocessor.js",
"^.+\\.js$": "babel-jest"
},
"transformIgnorePatterns": [
"node_modules/(?!@ngrx|ngx-store|ts-debug)"
],
"coverageDirectory": "coverage-jest"
}
}