status-web/package.json

74 lines
2.2 KiB
JSON
Raw Normal View History

{
"type": "module",
"private": true,
2023-01-11 13:38:47 +00:00
"workspaces": {
"packages": [
"packages/status-js",
"packages/colors",
"packages/icons",
"packages/components",
"apps/*"
2023-01-11 13:38:47 +00:00
]
},
"keywords": [],
"scripts": {
"postinstall": "patch-package",
2022-02-24 22:27:22 +00:00
"prepare": "husky install",
"test": "turbo run test --filter=@status-im/* -- --run",
2023-03-13 20:48:42 +00:00
"dev": "turbo run dev --filter=@status-im/* --parallel",
"build": "turbo run build --filter=@status-im/*",
"lint": "eslint --cache --cache-location ./node_modules/.cache/eslint/.eslint-cache .",
2023-03-13 20:48:42 +00:00
"typecheck": "turbo run typecheck",
"format": "prettier --ignore-path .gitignore --write .",
2023-03-13 14:53:21 +00:00
"clean": "turbo run clean && rimraf node_modules",
"web": "yarn workspace web dev",
"mobile": "yarn workspace mobile dev",
"desktop": "yarn workspace desktop dev",
"website": "yarn workspace website dev",
2023-03-13 14:53:21 +00:00
"storybook": "yarn workspace @status-im/components storybook"
2023-01-11 13:38:47 +00:00
},
2023-03-14 12:48:29 +00:00
"resolutions": {
"@types/react": "18.0.33",
2023-03-14 12:48:29 +00:00
"@types/react-dom": "18.0.11"
},
"devDependencies": {
"@changesets/cli": "^2.23.0",
"@tsconfig/strictest": "^2.0.0",
"@types/prettier": "^2.7.2",
"@typescript-eslint/eslint-plugin": "^5.57.1",
"@typescript-eslint/parser": "^5.57.1",
"eslint": "^8.37.0",
"eslint-config-next": "^13.2.4",
"eslint-config-prettier": "^8.8.0",
2023-03-13 21:27:37 +00:00
"eslint-import-resolver-node": "^0.3.7",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-eslint-comments": "^3.2.0",
2023-03-13 21:27:37 +00:00
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
2023-03-13 21:37:38 +00:00
"husky": "^8.0.3",
"lint-staged": "^13.2.0",
"patch-package": "^6.5.1",
"prettier": "^2.8.8",
"prettier-plugin-tailwindcss": "^0.2.8",
"rimraf": "^4.4.1",
"turbo": "^1.8.8",
"typescript": "^5.0.3",
"vite": "^4.2.1",
"vite-node": "^0.29.8",
"vitest": "^0.29.8"
},
2022-02-24 22:27:22 +00:00
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"eslint",
"prettier --write"
],
"*.{md,mdx,yml,yaml,json}": [
"prettier --write"
]
},
"packageManager": "yarn@1.22.17"
}