-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.04 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 2.04 KB
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
{
"name": "angular-webpack-workflow",
"version": "1.0.0",
"description": "A workflow for Angular made with Webpack",
"scripts": {
"build": "webpack --config webpack.build.js --bail -p",
"dev": "webpack-dev-server --history-api-fallback --inline --progress",
"test": "karma start",
"test:live": "karma start --auto-watch --no-single-run"
},
"repository": {
"type": "git",
"url": "https://github.com/Foxandxss/angular-webpack-workflow.git"
},
"author": "Jesus Rodriguez",
"license": "MIT",
"bugs": {
"url": "https://github.com/Foxandxss/angular-webpack-workflow/issues"
},
"homepage": "https://github.com/Foxandxss/angular-webpack-workflow",
"dependencies": {
"angular": "^1.4.8",
"angular-ui-router": "^0.2.15"
},
"devDependencies": {
"angular-mocks": "^1.4.8",
"autoprefixer": "^6.0.3",
"babel-core": "^6.2.1",
"babel-loader": "^6.2.0",
"babel-plugin-transform-flow-strip-types": "^6.3.15",
"babel-preset-es2015": "^6.1.18",
"babel-runtime": "^6.3.13",
"browser-sync": "^2.10.0",
"browser-sync-webpack-plugin": "^1.0.1",
"css-loader": "^0.21.0",
"extract-text-webpack-plugin": "^0.8.2",
"file-loader": "^0.8.4",
"grunt": "^0.4.5",
"grunt-webpack": "^1.0.11",
"grunt-webpack-server": "^0.1.0",
"html-webpack-plugin": "^1.6.2",
"install": "^0.4.0",
"isparta-instrumenter-loader": "^1.0.0",
"jasmine-core": "^2.3.4",
"karma": "^0.13.14",
"karma-coverage": "^0.5.3",
"karma-jasmine": "^0.3.6",
"karma-phantomjs-launcher": "^0.2.1",
"karma-sourcemap-loader": "^0.3.6",
"karma-spec-reporter": "0.0.21",
"karma-webpack": "^1.7.0",
"matchdep": "^1.0.0",
"ng-annotate-webpack-plugin": "^0.1.2",
"node-libs-browser": "^0.5.3",
"node-sass": "^3.4.2",
"npm": "^3.5.1",
"null-loader": "^0.1.1",
"phantomjs": "^1.9.18",
"postcss-loader": "^0.7.0",
"raw-loader": "^0.5.1",
"sass-loader": "^3.1.2",
"style-loader": "^0.13.0",
"webpack": "^1.12.9",
"webpack-dev-server": "^1.14.0"
}
}