Skip to content

Commit

Permalink
feat: add app/lib config packages to simplify usage
Browse files Browse the repository at this point in the history
  • Loading branch information
JounQin committed Nov 1, 2019
1 parent 937a5a3 commit 4ec4962
Show file tree
Hide file tree
Showing 4 changed files with 1,536 additions and 166 deletions.
14 changes: 2 additions & 12 deletions package.json
Expand Up @@ -24,25 +24,15 @@
"test": "jest"
},
"devDependencies": {
"@angular/core": "^8.2.12",
"@babel/core": "^7.6.4",
"@angular/core": "^8.2.13",
"@types/jest": "^24.0.21",
"@types/node": "^12.12.1",
"@types/node": "^12.12.3",
"@types/react": "^16.9.11",
"@types/unist": "^2.0.3",
"browserslist": "^4.7.2",
"eslint": "^6.6.0",
"husky": "^3.0.9",
"jest": "^24.9.0",
"lerna": "^3.18.3",
"lint-staged": "^9.4.2",
"npm-run-all": "^4.1.5",
"postcss": "^7.0.21",
"prettier": "^1.18.2",
"react": "^16.11.0",
"stylelint": "^11.1.1",
"ts-jest": "^24.1.0",
"tslib": "^1.10.0",
"tslint": "^5.20.0",
"typescript": "^3.6.4",
"vue": "^2.6.10"
Expand Down
39 changes: 39 additions & 0 deletions packages/app-config/package.json
@@ -0,0 +1,39 @@
{
"name": "@1stg/app-config",
"version": "0.0.0",
"description": "Personal but Shareable App Configuration for all 1stG.me projects.",
"repository": "git+https://github.com/1stG/configs.git",
"homepage": "https://github.com/1stG/configs/tree/master/packages/app-config",
"author": "JounQin <admin@1stg.me>",
"license": "MIT",
"engines": {
"node": ">=10.0.0"
},
"dependencies": {
"@1stg/babel-preset": "^0.8.0",
"@1stg/browserslist-config": "^0.3.1",
"@1stg/commitlint-config": "^0.2.0",
"@1stg/eslint-config": "^0.14.0",
"@1stg/husky-config": "^0.4.0",
"@1stg/lint-staged": "^0.9.0",
"@1stg/postcss-config": "^0.4.0",
"@1stg/prettier-config": "^0.5.2",
"@1stg/remark-config": "^0.2.2",
"@1stg/stylelint-config": "^0.8.2",
"@1stg/tsconfig": "^0.7.0",
"@babel/core": "^7.6.4",
"@pkgr/es-modules": "^0.2.1",
"@pkgr/imagemin": "^0.3.0",
"browserslist": "^4.7.2",
"eslint": "^6.6.0",
"husky": "^3.0.9",
"lint-staged": "^9.4.2",
"postcss": "^7.0.21",
"prettier": "^1.18.2",
"stylelint": "^11.1.1",
"tslib": "^1.10.0"
},
"publishConfig": {
"access": "public"
}
}
32 changes: 32 additions & 0 deletions packages/lib-config/package.json
@@ -0,0 +1,32 @@
{
"name": "@1stg/lib-config",
"version": "0.0.0",
"description": "Personal but Shareable Library Configuration for all 1stG.me projects.",
"repository": "git+https://github.com/1stG/configs.git",
"homepage": "https://github.com/1stG/configs/tree/master/packages/lib-config",
"author": "JounQin <admin@1stg.me>",
"license": "MIT",
"engines": {
"node": ">=10.0.0"
},
"dependencies": {
"@1stg/babel-preset": "^0.8.0",
"@1stg/commitlint-config": "^0.2.0",
"@1stg/eslint-config": "^0.14.0",
"@1stg/husky-config": "^0.4.0",
"@1stg/lint-staged": "^0.9.0",
"@1stg/prettier-config": "^0.5.2",
"@1stg/remark-config": "^0.2.2",
"@1stg/tsconfig": "^0.7.0",
"@babel/core": "^7.6.4",
"@pkgr/rollup": "^0.6.5",
"eslint": "^6.6.0",
"husky": "^3.0.9",
"jest": "^24.9.0",
"lint-staged": "^9.4.2",
"prettier": "^1.18.2"
},
"publishConfig": {
"access": "public"
}
}

0 comments on commit 4ec4962

Please sign in to comment.