-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
69 lines (69 loc) · 2.19 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
{
"name": "angular2-tv-tracker",
"private": true,
"description": "Angular 2 TV tracker",
"repository": {
"url": "git@github.com:mattlewis92/angular2-tv-tracker.git"
},
"license": "MIT",
"dependencies": {
"@angular/animations": "^6.0.2",
"@angular/common": "^6.0.2",
"@angular/compiler": "^6.0.2",
"@angular/core": "^6.0.2",
"@angular/forms": "^6.0.2",
"@angular/platform-browser": "^6.0.2",
"@angular/platform-browser-dynamic": "^6.0.2",
"@angular/router": "^6.0.2",
"angular-async-cache": "^2.0.1",
"angular-calendar": "^0.28.7",
"angular-confirmation-popover": "^4.1.0",
"bootstrap": "4.0.0-alpha.6",
"core-js": "^2.5.6",
"font-awesome": "^4.6.3",
"lodash-es": "^4.17.10",
"randomcolor": "^0.5.2",
"rxjs": "^6.1.0",
"tinycolor2": "^1.4.1",
"tslib": "^1.9.1",
"zone.js": "^0.8.26"
},
"devDependencies": {
"@angular/compiler-cli": "^6.0.2",
"@ngtools/webpack": "^6.0.3",
"@types/lodash-es": "^4.17.0",
"@types/node": "^10.1.1",
"@types/tinycolor2": "^1.1.0",
"angular-router-loader": "^0.8.5",
"codelyzer": "^4.3.0",
"css-loader": "^0.28.11",
"file-loader": "^1.1.11",
"fork-ts-checker-webpack-plugin": "^0.4.1",
"html-webpack-plugin": "^3.2.0",
"husky": "^0.14.3",
"mini-css-extract-plugin": "^0.4.0",
"node-sass": "^4.13.1",
"offline-plugin": "^5.0.3",
"prettier": "^1.12.1",
"pretty-quick": "^1.4.1",
"sass-loader": "^7.0.1",
"style-loader": "^0.21.0",
"ts-loader": "^4.3.0",
"ts-node": "^6.0.3",
"tslint": "^5.10.0",
"tslint-config-mwl": "^0.4.1",
"tslint-loader": "^3.6.0",
"typescript": "~2.7.2",
"url-loader": "^1.0.1",
"webpack": "^4.8.3",
"webpack-cli": "^2.1.3",
"webpack-config-utils": "^2.3.0",
"webpack-dev-server": "^3.1.4"
},
"scripts": {
"start": "webpack-dev-server --env=development --progress --open",
"build": "webpack --progress --env=production",
"gh-pages": "git checkout gh-pages && git merge master --no-edit && rm -rf *.js *.css *.map *.html && npm run build && git add . && git commit -m 'Build' && git push && git checkout master",
"precommit": "pretty-quick --staged"
}
}