Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
samuelmeuli committed Apr 23, 2020
1 parent 05619b1 commit 099bcad
Show file tree
Hide file tree
Showing 2 changed files with 707 additions and 589 deletions.
88 changes: 28 additions & 60 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,83 +33,51 @@
"build:clean": "rm -rf ./dist/ ./dist-browser/ ./demo/dist/",
"build:ts": "rollup --config",
"test": "tsc --noEmit",
"format": "prettier --write",
"lint:css": "stylelint --fix --max-warnings 0",
"lint:scss": "stylelint --fix --max-warnings 0 --syntax scss",
"lint:js": "eslint --ext .js,.jsx --fix --max-warnings 0",
"lint:ts": "eslint --ext .ts,.tsx --fix --max-warnings 0",
"lint:css": "stylelint --ignore-path ./.gitignore --max-warnings 0 '**/*.{css,sass,scss}'",
"lint:css:fix": "yarn lint:css --fix",
"lint:ts": "eslint --ext .ts,.tsx --ignore-path ./.gitignore --max-warnings 0 '**/*.{ts,tsx}'",
"lint:ts:fix": "yarn lint:ts --fix",
"format": "prettier --ignore-path ./.gitignore --list-different '**/*.{css,html,js,json,jsx,less,md,scss,ts,tsx,vue,yaml,yml}'",
"format:fix": "yarn format --write",
"version": "yarn build",
"release": "np"
},
"dependencies": {
"@samuelmeuli/font-manager": "^1.4.0"
},
"devDependencies": {
"@samuelmeuli/eslint-config": "^5.0.2",
"@samuelmeuli/prettier-config": "^1.0.0",
"@samuelmeuli/stylelint-config": "^2.0.1",
"@samuelmeuli/tsconfig": "^0.2.0",
"@typescript-eslint/eslint-plugin": "^2.10.0",
"@typescript-eslint/parser": "^2.10.0",
"eslint": "6.7.2",
"eslint-config-airbnb-base": "14.0.0",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-simple-import-sort": "^5.0.0",
"husky": "^3.1.0",
"lint-staged": "^9.5.0",
"np": "^5.2.1",
"@samuelmeuli/eslint-config": "^6.0.0",
"@samuelmeuli/prettier-config": "^2.0.1",
"@samuelmeuli/stylelint-config": "^3.0.0",
"@samuelmeuli/tsconfig": "^1.0.0",
"@typescript-eslint/eslint-plugin": "^2.29.0",
"@typescript-eslint/parser": "^2.29.0",
"eslint": "6.8.0",
"eslint-config-airbnb-base": "14.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.20.2",
"np": "^6.2.2",
"npm-run-all": "^4.1.3",
"prettier": "^1.19.1",
"rollup": "^1.27.8",
"prettier": "^2.0.5",
"rollup": "^1.32.1",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-typescript2": "^0.25.3",
"serve": "^11.0.0",
"stylelint": "^11.0.0",
"typescript": "^3.7.3"
"rollup-plugin-typescript2": "^0.27.0",
"serve": "^11.3.0",
"stylelint": "^12.0.1",
"typescript": "^3.8.3"
},
"browserslist": [
"defaults"
],
"eslintConfig": {
"root": true,
"extends": [
"@samuelmeuli/eslint-config/typescript"
],
"extends": "@samuelmeuli/eslint-config/typescript",
"env": {
"browser": true
}
},
"stylelint": {
"extends": "@samuelmeuli/stylelint-config"
},
"prettier": "@samuelmeuli/prettier-config",
"lint-staged": {
"*.{js,jsx}": [
"yarn lint:js",
"yarn format",
"git add"
],
"*.{ts,tsx}": [
"yarn lint:ts",
"yarn format",
"git add"
],
"*.css": [
"yarn lint:css",
"yarn format",
"git add"
],
"*.scss": [
"yarn lint:scss",
"yarn format",
"git add"
],
"*.{json,md,yml}": [
"yarn format",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "yarn test && lint-staged"
}
}
"prettier": "@samuelmeuli/prettier-config"
}
Loading

0 comments on commit 099bcad

Please # to comment.