-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (79 loc) · 2.22 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
{
"name": "angular-webpack-workflow",
"version": "1.0.0",
"description": "A workflow for Angular made with Webpack",
"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":
{
"jquery": "^2.2.3",
"angular": "^1.5.0",
"angular-ui-router": "^0.3.1"
},
"devDependencies":
{
"node-libs-browser": "^1.0.0",
"rimraf": "^2.5.1",
"opener": "^1.4.1",
"phantomjs-prebuilt": "^2.1.4",
"karma": "^0.13.14",
"karma-webpack": "^1.7.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-jasmine": "^0.3.6",
"karma-coverage": "^0.5.3",
"karma-phantomjs-launcher": "^1.0.0",
"karma-chrome-launcher": "^1.0.1",
"karma-firefox-launcher": "^1.0.0",
"karma-spec-reporter": "0.0.26",
"karma-growl-reporter": "^1.0.0",
"karma-jsonsummary-reporter": "^1.3.0",
"jasmine-core": "^2.4.1",
"angular-mocks": "^1.5.0",
"autoprefixer": "^6.0.3",
"stylus": "^0.54.5",
"nib": "~1.1.0",
"eslint": "^2.12.0",
"htmlhint": "^0.9.13",
"stylint": "^1.3.10",
"webpack": "^1.12.13",
"webpack-dev-server": "^1.14.1",
"webpack-fail-plugin": "^1.0.5",
"remove-webpack-plugin": "^1.1.1",
"copy-webpack-plugin": "^1.1.1",
"extract-text-webpack-plugin": "^1.0.1",
"html-webpack-plugin": "^2.7.1",
"null-loader": "^0.1.1",
"raw-loader": "^0.5.1",
"file-loader": "^0.8.4",
"expose-loader": "^0.7.1",
"css-loader": "^0.23.0",
"style-loader": "^0.13.0",
"stylus-loader": "^2.1.1",
"postcss-loader": "^0.8.0",
"stylint-loader": "^1.0.0",
"htmlhint-loader": "^0.1.0",
"eslint-loader": "^1.3.0",
"istanbul-instrumenter-loader": "^0.2.0"
},
"scripts":
{
"start": "npm run server",
"test": "rimraf coverage && karma start",
"test-debug": "karma start -D",
"test-verbose": "karma start -V",
"test-watch": "karma start --auto-watch --no-single-run",
"cover": "opener ./coverage/phantomjs/index.html",
"build": "rimraf dist && webpack --bail --progress --profile",
"server": "webpack-dev-server --history-api-fallback --inline --progress"
}
}