๐Ÿ“ฆ justjake / memegentino

๐Ÿ“„ package.json ยท 62 lines
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62{
  "name": "memegentino",
  "version": "1.0.0",
  "scripts": {
    "dev": "blitz dev",
    "build": "blitz build",
    "deploy": "git push origin main:prod",
    "vercel-build": "./vercel-build.sh",
    "start": "blitz start",
    "studio": "blitz prisma studio",
    "lint": "eslint --ignore-path .gitignore --ext .js,.ts,.tsx .",
    "test": "echo no tests",
    "test:watch": "jest --watch",
    "prepare": "husky install",
    "postinstall": "blitz prisma generate"
  },
  "prisma": {
    "schema": "db/schema.prisma"
  },
  "prettier": {
    "semi": false,
    "printWidth": 100
  },
  "lint-staged": {
    "*.{js,ts,tsx}": [
      "eslint --fix"
    ]
  },
  "dependencies": {
    "@notionhq/client": "0.4.2",
    "@prisma/client": "3.2.1",
    "@types/lodash": "4.14.175",
    "@types/passport": "1.0.7",
    "@types/passport-strategy": "0.2.35",
    "@use-gesture/react": "10.1.1",
    "blitz": "0.41.0",
    "classnames": "2.3.1",
    "final-form": "4.20.4",
    "html2canvas": "1.3.2",
    "lodash": "4.17.21",
    "react": "alpha",
    "react-dom": "alpha",
    "react-final-form": "6.5.7",
    "zod": "3.9.8"
  },
  "devDependencies": {
    "@types/preview-email": "2.0.1",
    "@types/react": "17.0.27",
    "eslint": "7.32.0",
    "husky": "6.0.0",
    "lint-staged": "10.5.4",
    "prettier": "2.4.1",
    "prettier-plugin-prisma": "0.15.0",
    "pretty-quick": "3.1.1",
    "preview-email": "3.0.5",
    "prisma": "3.2.1",
    "typescript": "~4.3",
    "vercel": "23.1.2"
  },
  "private": true
}