-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
51 lines (51 loc) · 1.37 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
51
{
"private": true,
"scripts": {
"lint": "eslint --ext js,jsx,ts,tsx .",
"lint:locales": "intl-equalizer",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json}\""
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "yarn run lint:locales && yarn --cwd react test"
}
},
"lint-staged": {
"!(demo)**/*.{ts,js,tsx,jsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,graphql,gql}": [
"prettier --write"
]
},
"devDependencies": {
"@babel/core": "^7.11.4",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-transform-runtime": "^7.11.5",
"@babel/preset-env": "^7.11.0",
"@babel/preset-react": "^7.10.4",
"@babel/preset-typescript": "^7.15.0",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.0.2",
"@types/jscodeshift": "^0.7.1",
"@vtex/intl-equalizer": "^2.5.0",
"@vtex/prettier-config": "^0.3.6",
"eslint": "^7.16.0",
"eslint-config-vtex": "^12.9.3",
"eslint-config-vtex-react": "^6.9.3",
"glob": "^8.0.3",
"husky": "^4.3.6",
"lint-staged": "^10.5.3",
"prettier": "^2.2.1",
"rollup": "^3.23.0",
"rollup-plugin-node-externals": "^6.0.1",
"tslib": "^2.5.2",
"typescript": "^3.7.5"
},
"intl-equalizer": {
"referenceLocale": "pt"
}
}