mirror of
https://github.com/SrIzan10/starters.git
synced 2026-05-01 11:05:16 +00:00
70 lines
1.9 KiB
JSON
70 lines
1.9 KiB
JSON
{
|
|
"name": "blitzjs",
|
|
"version": "1.0.0",
|
|
"scripts": {
|
|
"start": "blitz start",
|
|
"studio": "blitz prisma studio",
|
|
"build": "yarn migrate:deploy && blitz build",
|
|
"start:production": "blitz start --production --port $PORT",
|
|
"migrate:dev": "blitz prisma migrate dev --preview-feature",
|
|
"migrate:deploy": "blitz prisma migrate deploy --preview-feature",
|
|
"lint": "eslint --ignore-path .gitignore --ext .js,.ts,.tsx .",
|
|
"test": "jest",
|
|
"test:watch": "jest --watch"
|
|
},
|
|
"browserslist": [
|
|
"defaults"
|
|
],
|
|
"prisma": {
|
|
"schema": "db/schema.prisma"
|
|
},
|
|
"prettier": {
|
|
"semi": false,
|
|
"printWidth": 100
|
|
},
|
|
"lint-staged": {
|
|
"*.{js,ts,tsx}": [
|
|
"eslint --fix"
|
|
]
|
|
},
|
|
"dependencies": {
|
|
"@prisma/cli": "~2.14",
|
|
"@prisma/client": "~2.14",
|
|
"blitz": "0.29.7",
|
|
"react": "0.0.0-experimental-3310209d0",
|
|
"react-dom": "0.0.0-experimental-3310209d0",
|
|
"react-error-boundary": "3.1.0",
|
|
"typescript": "4.1.3",
|
|
"zod": "1.11.11",
|
|
"final-form": "4.20.1",
|
|
"react-final-form": "6.5.2"
|
|
},
|
|
"devDependencies": {
|
|
"@testing-library/jest-dom": "5.11.9",
|
|
"@testing-library/react": "11.2.5",
|
|
"@testing-library/react-hooks": "3.7.0",
|
|
"@types/jest": "26.0.20",
|
|
"@types/react": "17.0.1",
|
|
"@typescript-eslint/eslint-plugin": "4.14.2",
|
|
"@typescript-eslint/parser": "4.14.2",
|
|
"babel-eslint": "10.1.0",
|
|
"eslint": "7.19.0",
|
|
"eslint-config-react-app": "6.0.0",
|
|
"eslint-plugin-flowtype": "5.2.0",
|
|
"eslint-plugin-import": "2.22.1",
|
|
"eslint-plugin-jsx-a11y": "6.4.1",
|
|
"eslint-plugin-react": "7.22.0",
|
|
"eslint-plugin-react-hooks": "4.2.0",
|
|
"husky": "4.3.8",
|
|
"jest": "26.6.3",
|
|
"jest-environment-jsdom-fourteen": "1.0.1",
|
|
"jest-watch-typeahead": "0.6.1",
|
|
"react-test-renderer": "17.0.1",
|
|
"lint-staged": "10.5.3",
|
|
"prettier": "2.2.1",
|
|
"pretty-quick": "3.1.0",
|
|
"ts-jest": "26.5.0"
|
|
},
|
|
"private": true
|
|
}
|