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
91 lines (91 loc) · 2.52 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
88
89
90
91
{
"name": "@dixeed/angularjs-scripts",
"version": "0.0.0-development",
"description": "Scripts used to abstract frontend projects tooling (webpack, babel, etc.)",
"main": "bin/angularjs-scripts.js",
"bin": "bin/angularjs-scripts.js",
"repository": {
"type": "git",
"url": "https://github.com/dixeed/angularjs-scripts.git"
},
"author": "Nargonath <[email protected]>",
"license": "MIT",
"engines": {
"node": ">=6.0.0"
},
"scripts": {
"cm": "git-cz",
"commitmsg": "commitlint -e",
"precommit": "lint-staged",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"lint-staged": {
"{bin,config,scripts,test}/**/*.{js,css,json}": [
"prettier --single-quote --write --print-width 100 --trailing-comma es5",
"git add"
]
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"files": [
"bin",
"scripts",
"config",
"eslint.js",
"babel.js"
],
"devDependencies": {
"@commitlint/cli": "4.1.0",
"@commitlint/config-angular": "3.1.1",
"commitizen": "2.9.6",
"cz-conventional-changelog": "2.0.0",
"husky": "0.14.3",
"lint-staged": "4.2.3",
"prettier": "1.7.4",
"semantic-release": "8.0.3"
},
"dependencies": {
"@dixeed/eslint-config": "1.2.0",
"add-asset-html-webpack-plugin": "2.1.2",
"autodll-webpack-plugin": "0.2.1",
"autoprefixer": "7.1.5",
"babel-core": "6.26.0",
"babel-loader": "7.1.2",
"babel-plugin-transform-object-rest-spread": "6.26.0",
"babel-polyfill": "6.26.0",
"babel-preset-env": "1.6.0",
"bluebird": "3.5.1",
"chalk": "2.1.0",
"clean-webpack-plugin": "0.1.17",
"cross-spawn": "5.1.0",
"css-loader": "0.28.7",
"eslint": "4.8.0",
"eslint-config-angular": "0.5.0",
"eslint-config-prettier": "2.6.0",
"eslint-loader": "1.9.0",
"eslint-plugin-angular": "3.1.1",
"eslint-plugin-import": "2.7.0",
"extract-text-webpack-plugin": "2.1.2",
"file-loader": "1.1.5",
"html-webpack-plugin": "2.30.1",
"joi": "11.1.1",
"ng-annotate-loader": "0.6.1",
"node-sass": "4.5.3",
"opn": "5.1.0",
"postcss-loader": "2.0.6",
"raw-loader": "0.5.1",
"react-dev-utils": "4.1.0",
"resolve-url-loader": "2.1.0",
"sass-loader": "6.0.6",
"style-loader": "0.19.0",
"url-loader": "0.6.2",
"webpack": "2.7.0",
"webpack-bundle-analyzer": "2.9.0",
"webpack-config-utils": "2.3.0",
"webpack-dev-server": "2.9.1",
"yargs-parser": "8.0.0"
}
}