-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.09 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": "angular-es6-webpack",
"version": "1.0.0",
"description": "Angular ES6 Webpack seed",
"main": "index.js",
"scripts": {
"build": "rimraf dist && webpack --bail --progress --profile",
"dev": "node node_modules/.bin/webpack-dev-server --history-api-fallback --hot --inline --progress",
"server": "webpack-dev-server --history-api-fallback --inline --progress",
"test": "karma start",
"test-watch": "karma start --auto-watch --no-single-run"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DioNNiS/angular-es6-webpack.git"
},
"keywords": [
"angular",
"webpack",
"es6",
"babel",
"less",
"karma",
"karma",
"phantomjs"
],
"author": "Denis Liger",
"license": "MIT",
"bugs": {
"url": "https://github.com/DioNNiS/angular-es6-webpack/issues"
},
"homepage": "https://github.com/DioNNiS/angular-es6-webpack#readme",
"dependencies": {
"angular": "1.5.3",
"angular-ui-router": "0.2.18",
"bootstrap": "3.3.6"
},
"devDependencies": {
"angular-mocks": "1.5.3",
"autoprefixer": "6.3.5",
"babel-core": "6.7.4",
"babel-loader": "6.2.4",
"babel-runtime": "6.6.1",
"babel-preset-es2015": "6.6.0",
"babel-plugin-transform-strict-mode": "6.6.5",
"copy-webpack-plugin": "1.1.1",
"compression-webpack-plugin": "0.3.1",
"css-loader": "0.23.1",
"extract-text-webpack-plugin": "1.0.1",
"file-loader": "0.8.5",
"html-webpack-plugin": "2.14.0",
"less": "2.6.1",
"less-loader": "2.2.3",
"node-libs-browser": "1.0.0",
"raw-loader": "0.5.1",
"rimraf": "2.5.2",
"style-loader": "0.13.1",
"isparta-instrumenter-loader": "1.0.0",
"jasmine-core": "2.4.1",
"karma": "0.13.22",
"karma-coverage": "0.5.5",
"karma-jasmine": "0.3.8",
"karma-phantomjs-launcher": "1.0.0",
"karma-sourcemap-loader": "0.3.7",
"karma-spec-reporter": "0.0.24",
"karma-webpack": "1.7.0",
"null-loader": "0.1.1",
"phantomjs": "2.1.3",
"phantomjs-prebuilt": "2.1.7",
"webpack": "1.12.14",
"webpack-dev-server": "1.14.1"
}
}