forked from giovanapereira/wordpress-integration
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 811 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 811 Bytes
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
{
"name": "wordpress-integration",
"private": true,
"license": "UNLICENSED",
"scripts": {
"lint": "eslint --ext js,jsx,ts,tsx .",
"format": "prettier --write \"**/*.{ts,js,json}\""
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,js,tsx,jsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,graphql,gql}": [
"prettier --write"
],
"*.json": [
"prettier --write"
]
},
"devDependencies": {
"@types/node": "^13.1.4",
"@vtex/prettier-config": "0.1.3",
"eslint": "6.8.0",
"eslint-config-vtex": "12.0.3",
"eslint-config-vtex-react": "^5.1.0",
"husky": "4.2.0",
"lint-staged": "10.0.2",
"prettier": "1.19.1",
"typescript": "3.7.5"
},
"dependencies": {}
}