forked from vtex-apps/easy-setup
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 891 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
{
"name": "beightoneagency.easy-setup",
"private": true,
"license": "UNLICENSED",
"scripts": {
"lint": "eslint --ext js,jsx,ts,tsx .",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json}\"",
"prepare": "yarn --cwd react"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,js,tsx,jsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,graphql,gql}": [
"prettier --write"
]
},
"devDependencies": {
"@types/node": "^12.12.21",
"@typescript-eslint/eslint-plugin": "^4.15.0",
"@vtex/prettier-config": "^0.1.3",
"eslint": "^7.19.0",
"eslint-config-vtex": "^12.9.4",
"eslint-config-vtex-react": "^6.9.4",
"husky": "^4.2.0",
"lint-staged": "^10.0.2",
"prettier": "^2.2.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.1.5"
}
}