-
Notifications
You must be signed in to change notification settings - Fork 147
/
Copy pathpackage.json
103 lines (103 loc) · 2.65 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
{
"name": "angular-starter",
"version": "1.1.1",
"author": "Antony Budianto",
"description": "Angular Starter with extensible features",
"main": "src/tmp/app/main.js",
"repository": {
"type": "git",
"url": "https://github.com/antonybudianto/angular-starter.git"
},
"engines": {
"node": ">=6.9",
"npm": "~3.0.0"
},
"scripts": {
"start": "gulp serve-dev",
"lint": "gulp tslint",
"test": "gulp test",
"e2e": "gulp e2e",
"env": "gulp env",
"build": "gulp build",
"serve-build": "gulp serve-build",
"clean": "gulp clean",
"coverage": "coveralls < ./report/remap/lcov.info"
},
"keywords": [
"angular",
"starter",
"seed",
"gulp",
"webpack",
"extensible",
"systemjs",
"systemjs builder",
"travis",
"karma",
"jasmine",
"istanbul"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/antonybudianto/angular-starter/issues"
},
"dependencies": {
"@angular/common": "~4.4.3",
"@angular/compiler": "~4.4.3",
"@angular/core": "~4.4.3",
"@angular/forms": "~4.4.3",
"@angular/http": "~4.4.3",
"@angular/platform-browser": "~4.4.3",
"@angular/platform-browser-dynamic": "~4.4.3",
"@angular/router": "~4.4.3",
"@ngstarter/systemjs-extension": "2.0.1",
"@types/core-js": "0.9.43",
"@types/jasmine": "2.6.0",
"@types/lodash": "4.14.74",
"@types/selenium-webdriver": "^3.0.7",
"bootstrap-sass": "^3.3.7",
"codelyzer": "3.2.0",
"core-js": "^2.5.1",
"del": "~3.0.0",
"font-awesome": "^4.7.0",
"glob": "^7.1.2",
"gulp": "^3.9.1",
"gulp-cssnano": "^2.1.2",
"gulp-flatten": "^0.3.1",
"gulp-if": "~2.0.2",
"gulp-protractor": "^4.1.0",
"gulp-rev": "^8.0.0",
"gulp-rev-replace": "^0.4.3",
"gulp-sass": "^3.1.0",
"gulp-sourcemaps": "^2.6.1",
"gulp-template": "^4.0.0",
"gulp-tslint": "8.1.2",
"gulp-typescript": "~3.2.2",
"gulp-uglify": "~3.0.0",
"gulp-useref": "~3.1.2",
"jasmine-core": "~2.8.0",
"jquery": "^3.2.1",
"karma": "~1.7.1",
"karma-coverage": "~1.1.1",
"karma-ie-launcher": "^1.0.0",
"karma-jasmine": "~1.1.0",
"karma-phantomjs-launcher": "~1.0.4",
"karma-sourcemap-loader": "^0.3.7",
"lodash": "^4.17.4",
"phantomjs-prebuilt": "^2.1.15",
"remap-istanbul": "0.9.5",
"require-dir": "~0.3.2",
"run-sequence": "~2.2.0",
"rxjs": "5.4.3",
"systemjs": "^0.20.19",
"tslint": "~5.7.0",
"typescript": "~2.5.2",
"yargs": "^9.0.1",
"zone.js": "^0.8.17"
},
"devDependencies": {
"browser-sync": "^2.18.13",
"connect-history-api-fallback": "^1.3.0",
"ts-node": "^3.3.0"
}
}