-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
59 lines (59 loc) · 1.42 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
{
"name": "gridsome-blog",
"private": true,
"scripts": {
"cz": "cz",
"build": "gridsome build",
"dev": "gridsome develop",
"explore": "gridsome explore",
"lint": "eslint src/**/*.{vue,js}",
"lint:fix": "eslint src/**/*.{vue,js} --fix"
},
"dependencies": {
"@gridsome/plugin-google-analytics": "0.1.2",
"@gridsome/plugin-sitemap": "0.4.0",
"@gridsome/remark-prismjs": "0.4.0",
"@gridsome/source-filesystem": "0.6.2",
"@gridsome/transformer-remark": "0.6.3",
"gridsome": "0.7.21",
"gridsome-plugin-feed": "^1.0.2",
"gridsome-plugin-pwa": "^0.0.18"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint": "^7.10.0",
"eslint-config-prettier": "^6.12.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-markdown": "^1.0.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-vue": "^7.0.0",
"cz-conventional-changelog": "^3.3.0",
"husky": "^4.3.0",
"lint-staged": "^10.4.0",
"node-sass": "4.14.1",
"prettier": "^2.1.2",
"sass-loader": "10.0.2",
"slugify": "^1.4.5"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"prepare-commit-msg": "exec < /dev/tty && git cz --hook || true",
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,vue}": [
"prettier --write",
"eslint --fix",
"git add"
]
}
}