64 lines
1.8 KiB
JSON
64 lines
1.8 KiB
JSON
{
|
|
"type": "module",
|
|
"private": true,
|
|
"workspaces": {
|
|
"packages": [
|
|
"packages/*",
|
|
"apps/*",
|
|
"examples/*"
|
|
]
|
|
},
|
|
"keywords": [],
|
|
"scripts": {
|
|
"prepare": "husky install",
|
|
"test": "turbo run test --filter=@status-im/* -- --run",
|
|
"dev": "turbo run dev --parallel --filter=@status-im/*",
|
|
"build": "turbo run build --filter=@status-im/*",
|
|
"typecheck": "turbo run typecheck --filter=@status-im/*",
|
|
"lint": "eslint --cache --cache-location ./node_modules/.cache/eslint/.eslint-cache .",
|
|
"format": "prettier --cache --write .",
|
|
"format:check": "prettier --check .",
|
|
"clean": "turbo run clean && rimraf node_modules"
|
|
},
|
|
"resolutions": {
|
|
"react": "18.1.0",
|
|
"react-dom": "18.1.0",
|
|
"react-native-svg": "13.4.0"
|
|
},
|
|
"devDependencies": {
|
|
"@changesets/cli": "^2.23.0",
|
|
"@tsconfig/strictest": "^1.0.1",
|
|
"@typescript-eslint/eslint-plugin": "^5.12.0",
|
|
"@typescript-eslint/parser": "^5.12.0",
|
|
"eslint": "^8.9.0",
|
|
"eslint-config-prettier": "^8.3.0",
|
|
"eslint-import-resolver-node": "^0.3.6",
|
|
"eslint-import-resolver-typescript": "^3.5.0",
|
|
"eslint-plugin-eslint-comments": "^3.2.0",
|
|
"eslint-plugin-import": "^2.25.2",
|
|
"eslint-plugin-jsx-a11y": "^6.5.1",
|
|
"eslint-plugin-react": "^7.27.0",
|
|
"eslint-plugin-react-hooks": "^4.3.0",
|
|
"eslint-plugin-simple-import-sort": "^7.0.0",
|
|
"husky": "^7.0.4",
|
|
"lint-staged": "^12.3.4",
|
|
"prettier": "^2.7.1",
|
|
"rimraf": "^4.1.1",
|
|
"turbo": "^1.3.1",
|
|
"typescript": "^4.5.5",
|
|
"vite": "^2.9.12",
|
|
"vite-node": "^0.16.0",
|
|
"vitest": "^0.16.0"
|
|
},
|
|
"lint-staged": {
|
|
"*.{ts,tsx,js,jsx}": [
|
|
"eslint",
|
|
"prettier --write"
|
|
],
|
|
"*.{md,mdx,yml,yaml,json}": [
|
|
"prettier --write"
|
|
]
|
|
},
|
|
"packageManager": "yarn@1.22.17"
|
|
}
|