Files
archived-starters/examples/blitzjs/package.json
2021-10-12 06:26:51 -04:00

50 lines
1.1 KiB
JSON

{
"name": "blitzjs",
"version": "1.0.0",
"scripts": {
"dev": "blitz dev",
"build": "blitz build",
"start": "blitz start --port ${PORT-3000}",
"studio": "blitz prisma studio",
"lint": "eslint --ignore-path .gitignore --ext .js,.ts,.tsx .",
"test": "jest",
"test:watch": "jest --watch",
"prepare": "husky install"
},
"prisma": {
"schema": "db/schema.prisma"
},
"prettier": {
"semi": false,
"printWidth": 100
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --fix"
]
},
"dependencies": {
"@prisma/client": "3.2.1",
"blitz": "0.41.0",
"react-dom": "alpha",
"react": "alpha",
"zod": "3.9.8",
"final-form": "4.20.4",
"react-final-form": "6.5.7"
},
"devDependencies": {
"@types/preview-email": "2.0.1",
"@types/react": "17.0.28",
"eslint": "7.32.0",
"husky": "6.0.0",
"lint-staged": "10.5.4",
"prettier-plugin-prisma": "0.15.0",
"prettier": "2.4.1",
"pretty-quick": "3.1.1",
"preview-email": "3.0.5",
"prisma": "3.2.1",
"typescript": "~4.3"
},
"private": true
}