-
Notifications
You must be signed in to change notification settings - Fork 1.4k
/
package.json
83 lines (83 loc) · 2.08 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
{
"name": "ng6-starter",
"version": "0.0.1",
"description": "Starter for Angular + ES6 + (Webpack or JSPM)",
"main": "index.js",
"dependencies": {
"angular": "^1.5.0",
"angular-ui-router": "^1.0.0-beta.1",
"normalize.css": "^3.0.3"
},
"devDependencies": {
"angular-mocks": "^1.5.0",
"babel-core": "^6.7.7",
"babel-loader": "^6.2.4",
"babel-plugin-transform-runtime": "^6.7.5",
"babel-polyfill": "^6.7.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.7.2",
"babel-runtime": "^6.6.1",
"browser-sync": "^2.11.1",
"chai": "^3.4.0",
"connect-history-api-fallback": "^1.1.0",
"css-loader": "^0.19.0",
"del": "^2.2.0",
"fs-walk": "0.0.1",
"gulp": "^3.9.1",
"gulp-rename": "^1.2.2",
"gulp-template": "^3.0.0",
"gulp-util": "^3.0.7",
"html-webpack-plugin": "^1.7.0",
"karma": "^0.13.22",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^0.2.0",
"karma-mocha": "^0.2.0",
"karma-mocha-reporter": "^1.0.2",
"karma-sourcemap-loader": "^0.3.4",
"karma-webpack": "^1.5.1",
"lodash": "^4.11.1",
"mocha": "^2.3.0",
"ng-annotate-loader": "0.0.10",
"node-libs-browser": "^0.5.0",
"node-sass": "^4.14.1",
"raw-loader": "^0.5.1",
"run-sequence": "^1.1.0",
"sass-loader": "^4.0.2",
"style-loader": "^0.12.2",
"supports-color": "^3.1.2",
"webpack": "^1.13.3",
"webpack-dev-middleware": "^1.6.1",
"webpack-hot-middleware": "^2.6.0",
"yargs": "^3.9.0"
},
"scripts": {
"build": "gulp webpack",
"component": "gulp component",
"serve": "gulp serve",
"start": "gulp serve",
"test": "karma start",
"watch": "gulp serve",
"webpack": "gulp webpack"
},
"keywords": [
"angular",
"webpack",
"es6"
],
"repository": {
"type": "git",
"url": "https://github.com/angularclass/NG6-starter.git"
},
"author": "AngularClass",
"license": "Apache-2.0",
"babel": {
"plugins": [
"transform-runtime"
],
"presets": [
"es2015",
"stage-0"
]
}
}