-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
61 lines (61 loc) · 1.7 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
{
"name": "gridsome-and-headless-wp",
"version": "1.0.0",
"description": "A basic Gridsome Starter Kit using Markdown files for the content",
"private": true,
"author": "Paul Ozyzniewski",
"repository": {
"type": "git",
"url": "https://github.com/OziOcb/Gridsome-and-Markdown-Starter-Kit"
},
"scripts": {
"build": "gridsome build",
"develop": "gridsome develop",
"explore": "gridsome explore"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.25",
"@fortawesome/free-brands-svg-icons": "^5.11.2",
"@fortawesome/free-solid-svg-icons": "^5.12.0",
"@fortawesome/vue-fontawesome": "^0.1.8",
"@gridsome/vue-remark": "^0.1.9",
"gridsome": "^0.7.10",
"gsap": "^3.0.4",
"lodash-es": "^4.17.15",
"normalize.css": "^8.0.1",
"sweet-modal-vue": "^2.0.0",
"vuelidate": "^0.7.4"
},
"devDependencies": {
"babel-eslint": "^10.0.3",
"eslint": "^6.5.1",
"eslint-config-prettier": "^6.4.0",
"eslint-loader": "^3.0.2",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-vue": "^5.2.3",
"gridsome-plugin-base-components": "^0.0.12",
"husky": "^3.0.9",
"imports-loader": "^0.8.0",
"lint-staged": "^10.0.0-1",
"node-sass": "^4.12.0",
"prettier": "^1.18.2",
"sass-loader": "^8.0.0",
"style-resources-loader": "^1.3.2",
"stylelint": "^11.1.1",
"stylelint-config-prettier": "^6.0.0",
"stylelint-config-recommended": "^3.0.0",
"stylelint-order": "^3.1.1",
"vue-svg-loader": "^0.15.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{css,scss,postcss,vue,js}": [
"stylelint --fix",
"prettier --write"
]
}
}