forked from vtex-apps/product-customizer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 824 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
{
"name": "product-customizer",
"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": {
"@vtex/prettier-config": "^0.1.4",
"@vtex/tsconfig": "^0.4.4",
"babel-eslint": "^10.1.0",
"eslint": "^6.8.0",
"eslint-config-vtex": "^12.3.2",
"eslint-config-vtex-react": "^6.3.2",
"husky": "^4.2.0",
"lint-staged": "^10.0.2",
"prettier": "^2.0.2",
"typescript": "3.8.3"
}
}