This repository has been archived by the owner on Dec 1, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
83 lines (83 loc) · 2.69 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
{
"name": "angularjs-seed-webpack",
"version": "1.0.0",
"description": "This is a blank startup project for AngularJS using the components approach and webpack for the build chain.",
"main": "index.js",
"scripts": {
"precommit": "lint-staged",
"prestart": "node config/dll-script",
"start": "webpack-dev-server --env.dev",
"fix": "webpack --display-error-details",
"reset": "rm -rf .git && git init",
"build": "npm run build:prod",
"build:dev": "webpack --env.dev",
"build:prod": "webpack --env.prod -p",
"build:dll": "webpack --config webpack.config.dll.js",
"analyze:dev": "webpack --env.dev --env.analyze",
"analyze:prod": "webpack --env.prod --env.analyze -p"
},
"browserslist": ["> 1%", "last 4 versions", "Firefox ESR", "not ie < 9"],
"lint-staged": {
"app/**/*.{js,json,css}": [
"prettier --single-quote --write --print-width 100 --trailing-comma es5",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/dixeed/angularjs-seed-webpack.git"
},
"keywords": ["angularjs", "components", "webpack"],
"author": "Nargonath",
"license": "MIT",
"bugs": {
"url": "https://github.com/dixeed/angularjs-seed-webpack/issues"
},
"homepage": "https://github.com/dixeed/angularjs-seed-webpack#readme",
"dllIgnore": [],
"devDependencies": {
"add-asset-html-webpack-plugin": "^2.0.1",
"autoprefixer": "^7.1.2",
"babel-core": "^6.24.1",
"babel-loader": "^7.0.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-env": "^1.5.0",
"bluebird": "^3.5.0",
"chalk": "^1.1.3",
"clean-webpack-plugin": "^0.1.16",
"css-loader": "^0.28.2",
"eslint": "^3.19.0",
"eslint-config-angular": "^0.5.0",
"eslint-loader": "^1.7.0",
"eslint-plugin-angular": "^2.4.0",
"eslint-plugin-import": "^2.2.0",
"extract-text-webpack-plugin": "^2.1.0",
"file-loader": "^0.11.0",
"fs-extra": "^3.0.1",
"html-webpack-plugin": "^2.24.1",
"husky": "^0.14.3",
"lint-staged": "^4.0.1",
"ng-annotate-loader": "^0.6.0",
"node-sass": "^4.5.0",
"postcss-loader": "^2.0.6",
"prettier": "^1.5.2",
"raw-loader": "^0.5.1",
"resolve-url-loader": "^2.0.2",
"sass-loader": "^6.0.3",
"style-loader": "^0.18.0",
"url-loader": "^0.5.8",
"webpack": "^2.5.0",
"webpack-bundle-analyzer": "^2.8.0",
"webpack-config-utils": "^2.3.0",
"webpack-dev-server": "^2.4.0"
},
"dependencies": {
"@uirouter/angularjs": "^1.0.6",
"angular": "^1.6.6",
"angular-animate": "^1.6.6",
"angular-resource": "^1.6.6",
"angular-sanitize": "^1.6.6",
"angular-ui-notification": "^0.3.6",
"oclazyload": "^1.0.9"
}
}