forked from PatrickJS/NG6-starter
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
73 lines (73 loc) · 1.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
{
"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.23.1",
"babel-loader": "^6.3.2",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.22.0",
"babel-preset-stage-0": "^6.22.0",
"babel-register": "^6.23.0",
"babel-runtime": "^6.23.0",
"chai": "^3.5.0",
"connect-history-api-fallback": "^1.3.0",
"css-loader": "^0.26.2",
"gulp": "^3.9.1",
"gulp-rename": "^1.2.2",
"gulp-template": "^4.0.0",
"html-webpack-plugin": "^2.28.0",
"karma": "^1.5.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.0.0",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.2",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^2.0.2",
"lodash": "^4.17.4",
"mocha": "^3.2.0",
"ng-annotate-loader": "^0.2.0",
"node-sass": "^4.5.0",
"raw-loader": "^0.5.1",
"sass-loader": "^6.0.2",
"style-loader": "^0.13.2",
"webpack": "^2.2.1",
"webpack-dev-server": "^2.4.1",
"yargs": "^6.6.0"
},
"scripts": {
"build": "webpack --progress --config ./config/webpack.prod.config.js",
"serve": "webpack-dev-server --progress --config ./config/webpack.dev.config.js",
"start": "webpack-dev-server --progress --config ./config/webpack.dev.config.js",
"test": "karma start",
"component": "gulp component"
},
"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"
]
}
}