-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathpackage.json
44 lines (44 loc) · 1.22 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
{
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"fix": "npm run lint -- --fix",
"flow": "flow",
"lint": "eslint .",
"precommit": "node -r sucrase/register localizeLanguage.js && lint-staged && flow && tsc",
"prepare": "husky install && lerna exec yarn prepare"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "eslint"
},
"resolutions": {
"js-yaml": "3.13.1",
"scrypt.js": "0.3.0",
"sha3": "2.1.4"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.8.2",
"@typescript-eslint/parser": "^4.8.2",
"babel-eslint": "^10.1.0",
"css-module-flow": "^1.0.0",
"eslint": "^7.14.0",
"eslint-config-standard-kit": "0.15.1",
"eslint-plugin-flowtype": "^5.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-react-native": "^3.11.0",
"eslint-plugin-simple-import-sort": "^6.0.1",
"husky": "^7.0.0",
"lerna": "^3.16.4",
"lint-staged": "^10.5.3",
"prettier": "^2.2.0",
"sucrase": "^3.19.0",
"typescript": "^4.1.2"
}
}