-
-
Notifications
You must be signed in to change notification settings - Fork 798
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
remove typescript bits from package.json generated for js projects (#…
…1402) (newapp) Co-authored-by: Aleksandra <[email protected]>
- Loading branch information
Showing
3 changed files
with
51 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
{ | ||
"name": "__name__", | ||
"version": "1.0.0", | ||
"scripts": { | ||
"dev": "blitz dev", | ||
"build": "blitz build", | ||
"start": "blitz start", | ||
"studio": "blitz prisma studio", | ||
"lint": "eslint --ignore-path .gitignore --ext .js .", | ||
"test": "jest", | ||
"test:watch": "jest --watch", | ||
"prepare": "husky install" | ||
}, | ||
"prisma": { | ||
"schema": "db/schema.prisma" | ||
}, | ||
"prettier": { | ||
"semi": false, | ||
"printWidth": 100 | ||
}, | ||
"lint-staged": { | ||
"*.{js}": [ | ||
"eslint --fix" | ||
] | ||
}, | ||
"dependencies": { | ||
"@prisma/client": "2.x", | ||
"blitz": "canary", | ||
"react-dom": "alpha", | ||
"react": "alpha", | ||
"zod": "3.x" | ||
}, | ||
"devDependencies": { | ||
"eslint": "7.x", | ||
"husky": "6.x", | ||
"lint-staged": "10.x", | ||
"prettier-plugin-prisma": "0.x", | ||
"prettier": "2.x", | ||
"pretty-quick": "3.x", | ||
"preview-email": "3.x", | ||
"prisma": "2.x" | ||
}, | ||
"private": true | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -44,4 +44,4 @@ | |
"typescript": "~4.3" | ||
}, | ||
"private": true | ||
} | ||
} |