status-web/package.json

71 lines
2.2 KiB
JSON
Raw Normal View History

{
2022-06-04 11:09:49 +00:00
"alias": {
"protons-runtime": "./node_modules/protons-runtime/dist/src/index.js",
"uint8arraylist": "./node_modules/uint8arraylist/dist/src/index.js"
},
"private": true,
"workspaces": [
"packages/*",
"examples/*"
],
"keywords": [],
"scripts": {
2022-02-24 22:27:22 +00:00
"prepare": "husky install",
"fix": "run-s 'fix:*' && wsrun -e -c -s fix",
"build": "wsrun -e -c -s build",
2022-06-10 16:23:37 +00:00
"build:status-js": "yarn workspace @status-im/js build",
2022-05-29 14:52:17 +00:00
"build:status-react": "yarn workspace @status-im/react build",
"lint": "eslint 'packages/**/*.{ts,tsx}'",
"lint:fix": "eslint 'packages/**/*.{ts,tsx}' --fix",
2022-02-24 22:30:34 +00:00
"lint:examples": "eslint 'examples/**/*.{ts,tsx}'",
"format": "prettier --write .",
"typecheck": "wsrun -e -c -s typecheck",
2022-06-01 05:14:27 +00:00
"test": "jest"
},
"devDependencies": {
2022-05-30 14:04:25 +00:00
"@babel/core": "^7.18.2",
"@babel/preset-env": "^7.18.2",
"@babel/preset-typescript": "^7.17.12",
2022-05-29 22:49:26 +00:00
"@parcel/config-default": "^2.6.0",
2022-06-04 11:09:49 +00:00
"@parcel/packager-ts": "^2.6.0",
2022-05-29 22:49:26 +00:00
"@parcel/transformer-js": "^2.6.0",
"@parcel/transformer-react-refresh-wrap": "^2.6.0",
2022-06-04 11:09:49 +00:00
"@parcel/transformer-typescript-types": "^2.6.0",
2022-05-30 14:04:25 +00:00
"@types/jest": "^27.5.1",
"@typescript-eslint/eslint-plugin": "^5.12.0",
"@typescript-eslint/parser": "^5.12.0",
2022-05-30 14:04:25 +00:00
"babel-jest": "^28.1.0",
"eslint": "^8.9.0",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-node": "^0.3.6",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-jest": "^26.1.1",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-react": "^7.27.0",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
2022-02-24 22:27:22 +00:00
"husky": "^7.0.4",
2022-05-30 14:04:25 +00:00
"jest": "^28.1.0",
2022-02-24 22:27:22 +00:00
"lint-staged": "^12.3.4",
"npm-run-all": "^4.1.5",
2022-06-04 11:09:49 +00:00
"parcel": "^2.6.0",
"prettier": "^2.5.1",
"typescript": "^4.5.5",
2022-06-04 11:09:49 +00:00
"wsrun": "^5.2.4",
"ts-jest": "^28.0.4"
},
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"
}