-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
86 lines (86 loc) · 2.21 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
{
"name": "task-master",
"version": "0.1.3",
"description": "a gulp tasks collection",
"main": "app.js",
"scripts": {
"webpack": "webpack",
"webpack:dev": "webpack --display-error-details -w",
"gulp": "gulp",
"dev": "npm run webpack:dev & npm run gulp",
"postinstall": "gulp hook",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -w -r 0"
},
"repository": "https://github.com/gaowhen/task-master.git",
"author": "Miko Gao <[email protected]>",
"license": "MIT",
"browserify-shim": {
"jquery": "global:$"
},
"browserify": {
"transform": [
"browserify-shim"
]
},
"dependencies": {
"body-parser": "1.15.0",
"config": "1.19.0",
"connect-logger": "0.0.1",
"cookie-parser": "1.4.1",
"eslint-plugin-react": "4.2.0",
"express": "4.13.4",
"gulp-eslint": "2.0.0",
"jade": "1.11.0",
"method-override": "2.3.5",
"request": "2.69.0",
"yargs": "4.2.0"
},
"devDependencies": {
"babel": "6.5.2",
"babel-core": "6.6.5",
"babel-loader": "6.2.4",
"babel-preset-es2015": "6.6.0",
"babel-preset-react": "6.5.0",
"babelify": "7.2.0",
"browserify": "13.0.0",
"browserify-shim": "3.8.12",
"conventional-changelog": "1.1.0",
"cz-conventional-changelog": "1.1.5",
"globby": "4.0.0",
"gulp": "3.9.1",
"gulp-bump": "1.0.0",
"gulp-cached": "1.1.0",
"gulp-cssnano": "2.1.1",
"gulp-filesize": "0.0.6",
"gulp-if": "2.0.0",
"gulp-include": "2.1.0",
"gulp-jade": "1.1.0",
"gulp-jscs": "3.0.2",
"gulp-jshint": "2.0.0",
"gulp-less": "3.0.5",
"gulp-less-sourcemap": "1.4.3",
"gulp-livereload": "3.8.1",
"gulp-plumber": "1.1.0",
"gulp-sourcemaps": "1.6.0",
"gulp-stylus": "2.3.0",
"gulp-symlink": "2.1.4",
"gulp-uglify": "1.5.3",
"gulp-util": "3.0.7",
"gulp-watch": "4.3.5",
"jeet": "6.1.2",
"jshint-stylish": "2.1.0",
"nib": "1.1.0",
"object-assign": "4.0.1",
"require-dir": "0.3.0",
"through2": "2.0.1",
"vinyl-transform": "1.0.0",
"watchify": "3.7.0",
"webpack": "1.12.14",
"yards": "0.1.4"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}