-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1010 Bytes
/
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
{
"name": "gridsome-source-commercejs",
"version": "0.1.1",
"description": "Commerce.js source plugin for Gridsome",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/snikidev/gridsome-source-commercejs"
},
"author": "snikidev <n.kakuev@gmail.com>",
"license": "MIT",
"keywords": [
"gridsome",
"gridsome-plugin",
"gridsome-source-plugin",
"vuejs",
"commercejs"
],
"scripts": {
"lint": "eslint --fix .",
"prettier": "prettier --write . --ignore-path .gitignore"
},
"dependencies": {
"@chec/commerce.js": "^2.2.0"
},
"devDependencies": {
"eslint": "^7.10.0",
"eslint-config-prettier": "^6.12.0",
"eslint-config-recommended": "^4.1.0",
"husky": "^4.3.0",
"lint-staged": "^10.4.0",
"prettier-eslint": "^11.0.0"
},
"lint-staged": {
"*.js": [
"yarn lint",
"yarn prettier",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}