Skip to content

Commit

Permalink
feat: configure package json file
Browse files Browse the repository at this point in the history
  • Loading branch information
lotyp committed Dec 7, 2022
1 parent aec9d84 commit 15e03a1
Show file tree
Hide file tree
Showing 2 changed files with 43 additions and 24 deletions.
18 changes: 18 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
root = true

[*]
charset = utf-8
end_of_line = lf
insert_final_newline = true
indent_style = space
indent_size = 4
trim_trailing_whitespace = true

[*.md]
trim_trailing_whitespace = false

[*.{yml,yaml}]
indent_size = 2

[Makefile]
indent_style = tab
49 changes: 25 additions & 24 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,25 +1,26 @@
{
"name": "v2",
"version": "0.0.0",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev --parallel",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\""
},
"devDependencies": {
"eslint-config-custom": "workspace:*",
"prettier": "latest",
"turbo": "latest"
},
"engines": {
"node": ">=14.0.0"
},
"dependencies": {},
"packageManager": "[email protected]"
}
"name": "next-starter-tpl",
"version": "1.0.0",
"author": "[email protected]",
"license": "MIT",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev --parallel",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\""
},
"dependencies": {},
"devDependencies": {
"eslint-config-custom": "workspace:*",
"prettier": "latest",
"turbo": "latest"
},
"engines": {
"node": ">=18.0.0"
},
"packageManager": "[email protected]"
}

0 comments on commit 15e03a1

Please sign in to comment.