-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathpackage.json
100 lines (100 loc) · 3.41 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
{
"name": "angular-8-boilerplate",
"version": "1.0.0",
"description": "Angular 8 Boilerplate",
"scripts": {
"ng": "ng",
"start": "ng serve --configuration=local --o --host 0.0.0.0",
"start:dev": "ng serve --configuration=development --o --host 0.0.0.0",
"start:prod": "ng serve --configuration=production --o --host 0.0.0.0",
"build:local": "ng build --configuration=local",
"build:dev": "ng build --prod --configuration=development",
"build:prod": "ng build --prod",
"pwa:build:local": "ng build --configuration=local && sw-precache --root=dist --config=precache-config.js",
"pwa:build:dev": "ng build --prod --configuration=development && sw-precache --root=dist --config=precache-config.js",
"pwa:build:prod": "ng build --prod && sw-precache --root=dist --config=precache-config.js",
"test": "ng test",
"e2e": "ng e2e",
"generate": "ng generate",
"compodoc:gen": "./node_modules/.bin/compodoc -p src/tsconfig.app.json",
"compodoc:serve": "./node_modules/.bin/compodoc -s src/tsconfig.app.json",
"compodoc": "npm run compodoc:gen && npm run compodoc:serve",
"precommit": "lint-staged",
"lint": "tslint --fix --config tslint.json --project tsconfig.json",
"format:fix": "pretty-quick --staged"
},
"lint-staged": {
"src/**/*.ts": [
"pretty-quick --staged",
"tslint --fix --config tslint.json --project tsconfig.json",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/patelmayankce/angular-8-boilerplate.git"
},
"keywords": [
"angular",
"angular6",
"angularjs",
"starter-kit",
"boilerplate",
"angular.io"
],
"author": "Mayank Patel <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/patelmayankce/angular-8-boilerplate/issues"
},
"homepage": "https://github.com/patelmayankce/angular-8-boilerplate#readme",
"dependencies": {
"@angular/animations": "^8.2.13",
"@angular/common": "^8.2.13",
"@angular/compiler": "^8.2.13",
"@angular/core": "^8.2.13",
"@angular/forms": "^8.2.13",
"@angular/http": "^7.2.15",
"@angular/platform-browser": "^8.2.13",
"@angular/platform-browser-dynamic": "^8.2.13",
"@angular/router": "^8.2.13",
"@angular/service-worker": "^8.2.13",
"@ng-bootstrap/ng-bootstrap": "^5.1.2",
"bootstrap": "^4.3.1",
"core-js": "^3.3.6",
"jquery": "^3.5.0",
"luxon": "^1.21.0",
"rxjs": "^6.5.3",
"zone.js": "~0.10.2"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.803.17",
"@angular/cli": "~8.3.17",
"@angular/compiler-cli": "^8.2.13",
"@angular/language-service": "^8.2.13",
"@compodoc/compodoc": "^1.1.11",
"@types/jasmine": "~3.4.5",
"@types/jasminewd2": "~2.0.8",
"@types/jquery": "^3.3.31",
"@types/luxon": "^1.15.2",
"@types/node": "~12.12.5",
"codelyzer": "~5.2.0",
"husky": "^3.0.9",
"jasmine-core": "~3.5.0",
"jasmine-spec-reporter": "~4.2.1",
"karma": "^4.4.1",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage-istanbul-reporter": "~2.1.0",
"karma-jasmine": "~2.0.1",
"karma-jasmine-html-reporter": "^1.4.2",
"lint-staged": "^9.4.2",
"node-sass": "^4.13.0",
"prettier": "^1.18.2",
"pretty-quick": "^2.0.0",
"protractor": "^5.4.2",
"sw-precache-webpack-plugin": "^0.11.5",
"ts-node": "~8.4.1",
"tslint": "~5.20.0",
"typescript": "3.5.3"
}
}