-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
122 lines (122 loc) · 3.79 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
{
"name": "foundation-vue",
"version": "0.1.0",
"private": true,
"description": "foundation-with-vue web component template",
"author": "annrie <annrie@users.noreply.github.com>",
"license": "MIT",
"scripts": {
"start": "gulp",
"build": "gulp build --production",
"format:stylesheet": "prettier-stylelint --quiet --write src/assets/scss/**/*",
"lint:stylesheet": "stylelint --fix src/assets/scss/**/*.scss",
"format:all": "prettier --write src/**/*.{js,jsx,ts,tsx,md}",
"lint-staged": "lint-staged",
"vue-component": "vue-cli-service build --target wc-async --name vue-method-slider 'src/assets/js/VueMethodSlider.vue'"
},
"main": "gulpfile.babel.js",
"dependencies": {
"@vue/web-component-wrapper": "^1.3.0",
"core-js": "^3.12.1",
"document-register-element": "^1.14.10",
"fibers": "^5.0.0",
"foundation-sites": "^6.6.3",
"jquery": "^3.6.0",
"lint-staged": "^11.0.0",
"motion-ui": "^2.0.3",
"regenerator-runtime": "^0.13.8",
"sass": "^1.32.13",
"vue": "^2.6.12",
"vue-mq": "^1.0.1",
"what-input": "^5.2.10"
},
"devDependencies": {
"@babel/cli": "^7.13.16",
"@babel/core": "^7.14.2",
"@babel/plugin-transform-runtime": "^7.14.2",
"@babel/preset-env": "^7.14.2",
"@babel/register": "^7.13.16",
"@babel/runtime-corejs3": "^7.14.0",
"@vue/cli-plugin-babel": "~4.5.6",
"@vue/cli-service": "~4.5.6",
"@vue/eslint-config-prettier": "^6.0.0",
"autoprefixer": "^10.2.5",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.2",
"browser-sync": "^2.26.14",
"cross-env": "^7.0.3",
"css-loader": "^5.2.4",
"eslint": "^7.26.0",
"eslint-config-prettier": "^8.3.0",
"eslint-friendly-formatter": "^4.0.1",
"eslint-loader": "^4.0.2",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-vue": "^7.9.0",
"eslint-plugin-vue-libs": "^4.0.0",
"file-loader": "^6.2.0",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"gulp-changed-in-place": "^2.3.0",
"gulp-clean-css": "^4.3.0",
"gulp-cli": "^2.3.0",
"gulp-concat": "^2.6.1",
"gulp-extname": "^0.2.2",
"gulp-if": "^3.0.0",
"gulp-imagemin": "^7.1.0",
"gulp-load-plugins": "^2.0.6",
"gulp-postcss": "^9.0.0",
"gulp-sass": "^4.1.0",
"gulp-sass-lint": "^1.4.0",
"gulp-sourcemaps": "^3.0.0",
"gulp-stylelint": "^13.0.0",
"gulp-terser": "^2.0.1",
"husky": "^6.0.0",
"js-yaml": "^4.1.0",
"node-sass": "^6.0.0",
"panini": "^1.7.1",
"postcss": "^8.2.15",
"prettier": "^2.3.0",
"prettier-eslint": "^12.0.0",
"prettier-stylelint": "^0.4.2",
"regenerator-runtime": "^0.13.8",
"rimraf": "^3.0.2",
"sass-loader": "^11.1.1",
"style-sherpa": "^1.0.2",
"stylelint": "^13.13.1",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-recess-order": "^2.4.0",
"stylelint-config-recommended": "^5.0.0",
"stylelint-config-recommended-scss": "^4.2.0",
"stylelint-config-standard-scss": "^1.1.0",
"stylelint-declaration-block-no-ignored-properties": "^2.3.0",
"stylelint-order": "^4.1.0",
"stylelint-prettier": "^1.2.0",
"stylelint-scss": "^3.19.0",
"uncss": "^0.17.3",
"url-loader": "^4.1.1",
"vinyl-named": "^1.1.0",
"vue-eslint-parser": "^7.6.0",
"vue-loader": "^15.9.7",
"vue-style-loader": "^4.1.3",
"vue-svg-inline-loader": "^2.1.2",
"vue-template-compiler": "^2.6.12",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12",
"webpack-stream": "^6.1.2",
"yargs": "^17.0.1"
},
"prettier": {},
"bugs": {
"url": "https://github.com/annrie/Foundation-Vue/issues",
"email": "annrie@users.noreply.github.com"
},
"repository": {
"type": "git",
"url": "git@github.com:annrie/Foundation-Vue.git"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}