Skip to content

Commit

Permalink
chore: init project
Browse files Browse the repository at this point in the history
  • Loading branch information
aibayanyu20 committed Apr 20, 2022
1 parent 8016b2e commit ae23185
Show file tree
Hide file tree
Showing 7 changed files with 2,237 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
module.exports = {
extends: [
"@mistjs"
]
}
26 changes: 26 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
lerna-debug.log*
.cache
.temp

node_modules
.DS_Store
dist
dist-ssr
*.local

# Editor directories and files
.vscode/*
!.vscode/extensions.json
.idea
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?
33 changes: 33 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
{
"name": "monorepo-starter",
"version": "1.0.0",
"description": "this is monorepo starter template",
"scripts": {
"prepare": "husky install"
},
"packageManager": "[email protected]",
"repository": {
"type": "git",
"url": "git+https://github.com/mistjs/monorepo-starter.git"
},
"keywords": [
"monorepo",
"tools-packages"
],
"author": {
"name": "aibayanyu",
"email": "[email protected]"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/mistjs/monorepo-starter/issues"
},
"homepage": "https://github.com/mistjs/monorepo-starter#readme",
"devDependencies": {
"@mistjs/eslint-config": "^0.0.2",
"@types/node": "^17.0.25",
"eslint": "^8.13.0",
"husky": "^7.0.4",
"typescript": "^4.6.3"
}
}
11 changes: 11 additions & 0 deletions packages/tools/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"name": "tools",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
},
"keywords": [],
"author": "",
"license": "ISC"
}
Loading

0 comments on commit ae23185

Please sign in to comment.