-
Notifications
You must be signed in to change notification settings - Fork 142
/
package.json
50 lines (50 loc) · 1.16 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
{
"name": "store-components",
"private": true,
"license": "UNLICENSED",
"scripts": {
"lint": "eslint --ext js,jsx,ts,tsx .",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json}\"",
"test": "cd ./react && yarn test",
"verify": "yarn lint && yarn test",
"lint:locales": "intl-equalizer",
"prepare": "husky install"
},
"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/classnames": "^2.2.9",
"@types/node": "^12.7.12",
"@types/ramda": "^0.26.18",
"@types/react": "^16.8.23",
"@vtex/intl-equalizer": "^2.2.1",
"@vtex/prettier-config": "^0.1.3",
"@vtex/tsconfig": "^0.2.0",
"eslint": "^6.8.0",
"eslint-config-vtex": "^12.8.1",
"eslint-config-vtex-react": "^6.7.3",
"husky": "^7.0.1",
"lint-staged": "^10.0.2",
"prettier": "2.3.2",
"typescript": "^3.7.5"
},
"version": "3.47.3",
"resolutions": {
"glob-parent": "^6.0.1"
}
}