-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.08 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
{
"author": "Panayiotis Lipiridis <[email protected]>",
"devDependencies": {
"@babel/core": "7.8.4",
"@babel/preset-env": "7.8.4",
"bower": "1.8.8",
"browser-sync": "",
"coffeescript": "2.5.1",
"del": "5.1.0",
"eslint": "6.8.0",
"eslint-config-prettier": "6.10.0",
"eslint-plugin-prettier": "3.1.2",
"gulp": "4.0.2",
"gulp-autoprefixer": "7.0.1",
"gulp-babel": "8.0.0",
"gulp-bower": "0.0.15",
"gulp-coffee": "3.0.3",
"gulp-concat": "2.6.1",
"gulp-cssnano": "2.1.3",
"gulp-help-doc": "1.1.1",
"gulp-if": "3.0.0",
"gulp-less": "4.0.1",
"gulp-load-plugins": "2.0.2",
"gulp-plumber": "1.2.1",
"gulp-size": "3.0.0",
"gulp-sourcemaps": "2.6.5",
"gulp-start": "1.0.1",
"gulp-uglify-es": "2.0.0",
"gulp-util": "3.0.8",
"gulp-watch": "5.0.1",
"gulp-yarn": "2.0.0",
"gulp-zip": "5.0.1",
"husky": "4.2.3",
"less": "3.11.1",
"lint-staged": "10.0.7",
"main-bower-files": "2.13.3",
"prettier": "1.19.1",
"require-dir": "1.2.0",
"uglify-es": "3.3.9",
"uglify-js": "3.7.5",
"yargs-parser": "17.0.0",
"yarn": "1.22.0"
},
"license": "MIT",
"name": "gae-init",
"repository": {
"type": "git",
"url": "https://github.com/gae-init"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
],
"*.{json,less,md,yml,yaml}": [
"prettier --write",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"scripts": {
"build": "gulp build",
"deploy": "gulp deploy --project=gae-init",
"fix:assets": "yarn prettier --write",
"fix:code": "yarn test:code --fix",
"fix": "yarn fix:assets && yarn fix:code",
"install": "gulp init",
"postinstall": "echo 'Run `gulp` to start or `gulp help` for more.'",
"prettier": "prettier --ignore-path .gitignore \"**/*.{json,less,md,yml,yaml}\"",
"start": "gulp",
"test:assets": "yarn prettier --list-different",
"test:code": "eslint --ignore-path .gitignore \"**/*.js\"",
"test": "yarn test:assets && yarn test:code"
}
}