-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
123 lines (123 loc) · 3.49 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"name": "website-template",
"version": "4.0.0",
"description": "静的Webサイト制作を少しモダンにするためのテンプレート",
"main": "index.js",
"scripts": {
"start": "cross-env NODE_ENV=development gulp",
"test": "npm run lint && cross-env NODE_ENV=production gulp",
"release": "npm run lint && cross-env NODE_ENV=production gulp build",
"htmlValidate": "cross-env NODE_ENV=development gulp htmlValidate",
"stylelint": "stylelint 'src/**/*.{scss,vue}' --fix",
"eslint": "eslint src/**/*.{js,vue} --fix",
"lint": "npm run htmlValidate && npm run stylelint && npm run eslint"
},
"keywords": [
"Gulp",
"webpack",
"Pug",
"SSI",
"HTMLHint",
"w3c validator",
"Sass",
"stylelint",
"Vue.js",
"Babel",
"ESLint",
"Aigis",
"Styleguide",
"SVG Sprite"
],
"repository": {
"type": "git",
"url": "git+https://[email protected]/manabuyasuda/website-template.git"
},
"author": "Manabu Yasuda",
"license": "MIT",
"bugs": {
"url": "https://github.com/manabuyasuda/website-template/issues"
},
"homepage": "https://github.com/manabuyasuda/website-template#readme",
"devDependencies": {
"@babel/preset-env": "^7.4.5",
"autoprefixer": "^9.6.0",
"babel-loader": "^8.0.6",
"browser-sync": "^2.26.7",
"browsersync-ssi": "^0.2.4",
"core-js": "^3.1.4",
"cross-env": "^5.2.0",
"css-loader": "^3.0.0",
"del": "^4.1.1",
"dotenv": "^8.0.0",
"eslint": "^6.0.1",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^6.0.0",
"eslint-loader": "^2.1.2",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-vue": "^5.2.3",
"gulp": "^4.0.2",
"gulp-aigis": "^1.3.0",
"gulp-cached": "^1.1.1",
"gulp-changed": "^4.0.0",
"gulp-clean-css": "^4.2.0",
"gulp-data": "^1.3.1",
"gulp-htmlhint": "^2.2.1",
"gulp-if": "^2.0.2",
"gulp-imagemin": "^6.0.0",
"gulp-notify": "^3.2.0",
"gulp-plumber": "^1.2.1",
"gulp-postcss": "^8.0.0",
"gulp-pug": "^4.0.1",
"gulp-sass": "^4.0.2",
"gulp-sass-glob": "^1.0.9",
"gulp-svg-sprite": "^1.5.0",
"gulp-w3cjs": "^1.3.2",
"htmlhint-stylish": "^1.0.3",
"imagemin-mozjpeg": "^8.0.0",
"imagemin-pngquant": "^8.0.0",
"node-sass": "^4.12.0",
"postcss-flexbugs-fixes": "^4.1.0",
"prettier": "^1.18.2",
"sass-loader": "^7.1.0",
"sass-resources-loader": "^2.0.1",
"style-loader": "^0.23.1",
"stylelint": "^10.1.0",
"stylelint-config-prettier": "^5.2.0",
"stylelint-config-standard": "^18.3.0",
"stylelint-order": "^3.0.0",
"stylelint-prettier": "^1.1.1",
"stylelint-scss": "^3.9.2",
"stylelint-webpack-plugin": "^0.10.5",
"vue-loader": "^15.7.0",
"vue-template-compiler": "^2.6.10",
"webpack": "^4.35.0",
"webpack-stream": "^5.2.1"
},
"dependencies": {
"a11y-dialog": "^5.2.0",
"axios": "^0.19.0",
"element-closest": "^3.0.1",
"es6-promise": "^4.2.8",
"flexibility": "^2.0.1",
"inobounce": "^0.1.6",
"jquery": "^3.4.1",
"lodash-es": "^4.17.11",
"normalize.css": "^8.0.1",
"objectFitPolyfill": "^2.3.0",
"picturefill": "^3.0.3",
"responsive-auto-height": "0.0.4",
"sass-mq": "^5.0.0",
"svg4everybody": "^2.1.9",
"sweet-scroll": "^4.0.0",
"vue": "^2.6.10",
"what-input": "^5.2.3"
},
"browserslist": [
"last 1 version",
"> 3% in JP",
"ie >= 11",
"iOS >= 11",
"Android >= 5.1"
]
}