-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 2.15 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 2.15 KB
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
{
"name": "angular-boilerplate",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"ng": "node_modules/@angular/cli/bin/ng",
"start": "ng serve --proxy-config proxy.conf.json",
"lint": "ng lint",
"test": "ng test",
"citest": "true || ng test --browsers PhantomJS --code-coverage=true --watch=false",
"pree2e": "webdriver-manager update --standalone false --gecko false",
"e2e": "ng e2e --proxy-config proxy.conf.json",
"build": "ng build --prod --aot=true --source-map=false --build-optimizer=false",
"license-checker": "npx license-checker --summary --production --excludePackages 'angular-boilerplate@0.0.0' --onlyAllow 'MIT;ISC;Apache-2.0;Apache 2.0;BSD;WTFPL;Artistic-2.0;CC0-1.0;CC-BY-3.0;Unlicense;Public Domain;'"
},
"private": true,
"dependencies": {
"@angular/animations": "12.2.2",
"@angular/cdk": "12.2.13",
"@angular/common": "12.2.2",
"@angular/compiler": "12.2.2",
"@angular/core": "12.2.2",
"@angular/forms": "12.2.2",
"@angular/platform-browser": "12.2.2",
"@angular/platform-browser-dynamic": "12.2.2",
"@angular/router": "12.2.2",
"@ngx-translate/core": "13.0.0",
"@ngx-translate/http-loader": "6.0.0",
"ajv": "8.11.0",
"core-js": "3.21.1",
"rxjs": "7.5.5",
"rxjs-compat": "6.6.7",
"tslib": "2.3.1",
"zone.js": "0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "12.2.2",
"@angular-devkit/core": "12.2.2",
"@angular-devkit/schematics": "12.2.2",
"@angular/cli": "12.2.2",
"@angular/compiler-cli": "12.2.2",
"@angular/language-service": "12.2.2",
"@types/jasmine": "4.0.1",
"@types/jasminewd2": "2.0.10",
"@types/node": "16.11.26",
"codelyzer": "6.0.2",
"jasmine-core": "4.0.1",
"jasmine-spec-reporter": "7.0.0",
"karma": "6.3.17",
"karma-chrome-launcher": "3.1.1",
"karma-cli": "2.0.0",
"karma-coverage-istanbul-reporter": "3.0.3",
"karma-jasmine": "4.0.2",
"karma-jasmine-html-reporter": "1.7.0",
"karma-phantomjs-launcher": "1.0.4",
"protractor": "7.0.0",
"puppeteer": "13.5.1",
"ts-node": "10.7.0",
"tslint": "5.20.1",
"typescript": "4.3.5"
}
}