Files
connect/package.json
Thomas Osmonson cb7da0263e build: dep updates
2020-05-01 11:00:02 -05:00

52 lines
1.8 KiB
JSON

{
"name": "root",
"private": true,
"devDependencies": {
"@blockstack/prettier-config": "^0.0.6",
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@commitlint/config-lerna-scopes": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^2.28.0",
"@typescript-eslint/parser": "^2.28.0",
"babel-eslint": "^10.1.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-config-react-app": "^5.2.1",
"eslint-plugin-flowtype": "^4.7.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jest": "^23.8.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^3.0.0",
"husky": "^4.2.3",
"lerna": "^3.20.2",
"prettier": "^2.0.4",
"typescript": "^3.8.2"
},
"scripts": {
"typecheck": "lerna run typecheck --parallel",
"dev": "yarn lerna exec --parallel 'yarn dev' --scope test-app --scope @blockstack/app",
"bootstrap": "yarn lerna exec --parallel 'yarn'",
"build:libs": "yarn build:ui && yarn build:keychain && yarn build:connect",
"build:ui": "lerna run build --scope @blockstack/ui",
"build:keychain": "lerna run build --scope @blockstack/keychain",
"build:connect": "lerna run build --scope @blockstack/connect",
"lint": "yarn lint:eslint && yarn lint:prettier",
"lint:eslint": "eslint --ext .ts,.tsx . -f unix",
"lint:fix": "eslint --ext .ts,.tsx . -f unix --fix && prettier --write **/*.{ts,tsx} *.js",
"lint:prettier": "prettier --check **/*.{ts,tsx} *.js",
"version": "lerna bootstrap"
},
"prettier": "@blockstack/prettier-config",
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"workspaces": [
"packages/*"
],
"dependencies": {}
}