-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
127 lines (127 loc) · 3.95 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
120
121
122
123
124
125
126
127
{
"name": "angular-webpack-starter",
"version": "2.0.1",
"author": "Antony Budianto",
"description": "Angular Webpack Starter with extensible features",
"main": "src/app/main.ts",
"repository": {
"type": "git",
"url": "https://github.com/antonybudianto/angular-webpack-starter.git"
},
"engines": {
"node": ">=6.9",
"npm": "~3.0.0"
},
"scripts": {
"start": "webpack-dashboard -- webpack-dev-server --inline --port 8080",
"start:dll": "run-s build:dll start",
"pretest": "npm run clean:coverage",
"test": "karma start",
"test:ci": "npm test -- --ci",
"tslint": "tslint",
"lint": "npm run tslint \"src/**/*.ts\"",
"serve": "lite-server -c config/browser-sync/bs-config.js",
"prebuild": "npm run clean:build",
"build": "webpack --config config/webpack/webpack.prod.js --progress --profile --bail",
"serve:build": "run-s build serve",
"build:dll": "webpack --config config/webpack/webpack.dll.js --progress --profile --bail",
"build:jit": "webpack --config config/webpack/webpack.prod-jit.js --progress --profile --bail",
"clean": "run-p clean:*",
"clean:build": "rimraf dist",
"clean:coverage": "rimraf coverage",
"clean:dll": "rimraf dll-dist",
"pree2e": "npm run webdriver:update -- --standalone",
"e2e": "protractor",
"webdriver-manager": "webdriver-manager",
"webdriver:start": "npm run webdriver-manager start",
"webdriver:update": "npm run webdriver-manager update",
"coveralls": "coveralls < ./coverage/lcov.info",
"stat": "node ./config/dashboard"
},
"keywords": [
"angular",
"angular2",
"starter",
"seed",
"webpack",
"extensible",
"travis",
"karma",
"jasmine",
"istanbul"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/antonybudianto/angular-webpack-starter/issues"
},
"dependencies": {
"@angular/common": "4.1.0",
"@angular/compiler": "4.1.0",
"@angular/compiler-cli": "4.1.0",
"@angular/core": "4.1.0",
"@angular/forms": "4.1.0",
"@angular/http": "4.1.0",
"@angular/platform-browser": "4.1.0",
"@angular/platform-browser-dynamic": "4.1.0",
"@angular/router": "4.1.0",
"@ngtools/webpack": "1.3.1",
"@types/core-js": "0.9.41",
"@types/jasmine": "2.5.47",
"@types/lodash": "4.14.63",
"@types/node": "7.0.14",
"angular-router-loader": "^0.5.0",
"angular2-template-loader": "0.6.2",
"awesome-typescript-loader": "3.1.2",
"bootstrap": "^3.3.7",
"chalk": "^1.1.3",
"codelyzer": "3.0.0",
"compression-webpack-plugin": "0.4.0",
"copy-webpack-plugin": "^4.0.1",
"core-js": "^2.4.1",
"css-loader": "^0.27.3",
"dotenv": "^4.0.0",
"extract-text-webpack-plugin": "2.1.0",
"file-loader": "^0.10.1",
"font-awesome": "^4.7.0",
"html-loader": "^0.4.5",
"html-webpack-plugin": "^2.28.0",
"istanbul-instrumenter-loader": "2.0.0",
"jasmine-core": "~2.5.2",
"jquery": "^3.2.1",
"karma": "~1.5.0",
"karma-coverage": "~1.1.1",
"karma-jasmine": "~1.1.0",
"karma-phantomjs-launcher": "~1.0.4",
"karma-remap-coverage": "0.1.4",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "2.0.3",
"lodash": "^4.17.4",
"npm-run-all": "^4.0.2",
"null-loader": "^0.1.1",
"phantomjs-prebuilt": "^2.1.14",
"postcss-cssnext": "^2.10.0",
"postcss-loader": "^1.3.3",
"precss": "^1.4.0",
"raw-loader": "^0.5.1",
"rimraf": "^2.6.1",
"rxjs": "5.3.0",
"style-loader": "^0.14.1",
"tslint": "5.1.0",
"tslint-loader": "^3.5.3",
"typescript": "^2.3.0",
"webpack": "3.2.0",
"webpack-merge": "4.1.0",
"zone.js": "0.8.9"
},
"devDependencies": {
"@angularclass/hmr": "^1.2.2",
"@angularclass/hmr-loader": "^3.0.2",
"add-asset-html-webpack-plugin": "^1.0.2",
"compression": "^1.6.2",
"lite-server": "^2.3.0",
"protractor": "5.1.1",
"ts-node": "^2.1.2",
"webpack-dashboard": "^0.3.0",
"webpack-dev-server": "2.4.5"
}
}