Skip to content

Commit

Permalink
fix(components): Fixed scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
jameswlane committed May 14, 2019
1 parent 007179b commit 7751da1
Show file tree
Hide file tree
Showing 4 changed files with 74 additions and 80 deletions.
18 changes: 9 additions & 9 deletions .babelrc
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"presets": [
"@babel/env",
"@babel/typescript"
],
"plugins": [
"@babel/proposal-class-properties",
"@babel/proposal-object-rest-spread"
]
}
"presets": [
"@babel/env",
"@babel/typescript"
],
"plugins": [
"@babel/proposal-class-properties",
"@babel/proposal-object-rest-spread"
]
}
81 changes: 36 additions & 45 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

52 changes: 26 additions & 26 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
"eslint": "eslint \"src/**/*.{ts,tsx}\"",
"eslint:fix": "eslint --fix \"src/**/*.{ts,tsx}\"",
"ts:watch": "tsc -w",
"verify": "npm run verify:npmvet && npm run verify:david && npm run verify:audit && npm run verify:tscheck && npm run eslint && npm run test",
"verify": "npm run verify:npmvet && npm run verify:david && npm run verify:audit && npm run verify:tscheck && npm run eslint && npm run test && type-check",
"verify:circleci": "circleci config validate",
"verify:ci": "npm run verify:npmvet && npm run verify:audit && npm run test:ci",
"verify:check": "npx depcheck",
Expand All @@ -45,13 +45,37 @@
"now-build": "build-storybook",
"now-dev": "start-storybook -p $PORT"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"@emotion/core": "10.0.10",
"@emotion/styled": "10.0.11",
"@fortawesome/fontawesome-svg-core": "1.2.18",
"@fortawesome/free-brands-svg-icons": "5.8.2",
"@fortawesome/free-regular-svg-icons": "5.8.2",
"@fortawesome/free-solid-svg-icons": "5.8.2",
"@fortawesome/react-fontawesome": "0.1.4",
"emotion-theming": "10.0.10",
"lodash": "4.17.11",
"opt-cli": "1.6.0",
"react-pure-loaders": "2.0.1",
"type-fest": "0.5.0"
},
"peerDependencies": {
"react": ">=16.8.0",
"@status-board/theme-manager": ">=1"
},
"devDependencies": {
"@babel/cli": "7.4.4",
"@babel/core": "7.4.4",
"@babel/plugin-proposal-class-properties": "7.4.4",
"@babel/plugin-proposal-object-rest-spread": "7.4.4",
"@babel/preset-env": "7.4.4",
"@babel/preset-typescript": "7.3.3",
"@status-board/theme-manager": "1.0.2",
"@storybook/addon-actions": "5.0.11",
"@storybook/addon-links": "5.0.11",
"@storybook/addons": "5.0.11",
Expand All @@ -60,7 +84,7 @@
"@types/eslint": "4.16.6",
"@types/jest": "24.0.13",
"@types/lodash": "4.14.127",
"@types/node": "12.0.0",
"@types/node": "12.0.1",
"@types/react": "16.8.17",
"@types/react-dom": "16.8.4",
"@types/semantic-release": "15.13.0",
Expand All @@ -87,29 +111,5 @@
"semantic-release": "15.13.13",
"ts-jest": "24.0.2",
"typescript": "3.4.5"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"@emotion/core": "10.0.10",
"@emotion/styled": "10.0.11",
"@fortawesome/fontawesome-svg-core": "1.2.18",
"@fortawesome/free-brands-svg-icons": "5.8.2",
"@fortawesome/free-regular-svg-icons": "5.8.2",
"@fortawesome/free-solid-svg-icons": "5.8.2",
"@fortawesome/react-fontawesome": "0.1.4",
"@status-board/theme-manager": "1.0.2",
"emotion-theming": "10.0.10",
"lodash": "4.17.11",
"opt-cli": "1.6.0",
"react-pure-loaders": "2.0.1",
"type-fest": "0.5.0"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
}
}
3 changes: 3 additions & 0 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,5 +28,8 @@
},
"include": [
"src/**/*"
],
"exclude": [
"src/**/*.test.ts"
]
}

1 comment on commit 7751da1

@vercel
Copy link

@vercel vercel bot commented on 7751da1 May 14, 2019

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.