-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
70 lines (70 loc) · 2.23 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
{
"name": "angularjs-webpack-seed",
"version": "0.2.2",
"description": "A starter kit for using AngularJS with Webpack and ES6",
"main": "src/index.js",
"scripts": {
"build": "rimraf ./build && eslint *.js && webpack --config ./webpack.config.prod.js -p --progress --profile --bail",
"develop": "webpack-dev-server --config ./webpack.config.develop.js --open --inline --progress",
"serve": "npm run build && http-server ./build -o -a localhost -P http://your-domain.com/api",
"test": "rimraf ./reports && karma start"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thegreenhouseio/angularjs-webpack-seed.git"
},
"keywords": [
"angularjs",
"seed",
"starter",
"webpack",
"es6",
"javascript"
],
"author": "Owen Buckley <[email protected]> (http://www.thegreenhouse.io)",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/thegreenhouseio/angularjs-webpack-seed/issues"
},
"homepage": "https://github.com/thegreenhouseio/angularjs-webpack-seed#readme",
"dependencies": {
"angular": "^1.6.3",
"angular-animate": "^1.6.3",
"angular-aria": "^1.6.3",
"angular-material": "^1.1.3",
"angular-ui-router": "^0.4.2"
},
"devDependencies": {
"angular-mocks": "^1.6.4",
"babel-core": "^6.24.0",
"babel-loader": "^6.4.1",
"babel-plugin-istanbul": "^4.1.4",
"babel-preset-env": "^1.6.0",
"css-loader": "^0.27.3",
"css-to-string-loader": "^0.1.2",
"eslint": "^3.18.0",
"eslint-loader": "^1.7.0",
"extract-text-webpack-plugin": "^2.1.0",
"favicons-webpack-plugin": "^0.0.7",
"html-loader": "^0.4.5",
"html-webpack-plugin": "^2.28.0",
"http-server": "^0.10.0",
"jasmine-core": "^2.5.2",
"karma": "^1.5.0",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage": "^1.1.1",
"karma-jasmine": "^1.1.0",
"karma-junit-reporter": "^1.2.0",
"karma-webpack": "^2.0.3",
"ng-annotate-webpack-plugin": "^0.2.1-pre",
"node-sass": "^4.5.2",
"puppeteer": "^0.12.0",
"rimraf": "^2.6.1",
"sass-loader": "^6.0.3",
"style-loader": "^0.16.1",
"webpack": "^3.7.1",
"webpack-dev-server": "^2.4.2",
"webpack-md5-hash": "^0.0.5",
"webpack-merge": "^4.1.0"
}
}