Socialify

Folder ..

Viewing package.json
85 lines (85 loc) • 2.4 KB

 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
  "name": "socialify",
  "version": "2.0.0",
  "description": "Socialify your project. Share with the world!",
  "author": "@CryogenicPlanet, @wei",
  "license": "MIT",
  "repository": "https://github.com/wei/socialify.git",
  "scripts": {
    "dev": "next dev",
    "debug": "NODE_OPTIONS='--inspect' next",
    "build": "next build",
    "test": "jest",
    "test:watch": "jest --watch",
    "start": "next start",
    "lint": "eslint . --ext .ts,.tsx",
    "lint:fix": "yarn lint --fix",
    "prettier": "prettier --check .",
    "prettier:fix": "prettier --write .",
    "verify": "yarn prettier && yarn lint && yarn tsc && yarn build",
    "download-font": "./fonts/download-font.sh",
    "prepare": "is-ci || husky install"
  },
  "dependencies": {
    "@changesets/cli": "^2.25.2",
    "@vercel/analytics": "^0.1.5",
    "@vercel/og": "^0.0.20",
    "autoprefixer": "^10.4.13",
    "badgen": "^3.2.2",
    "clsx": "^1.2.1",
    "copee": "^1.0.6",
    "cross-fetch": "^3.1.5",
    "daisyui": "^2.41.0",
    "hero-patterns": "^2.1.0",
    "is-ci": "^3.0.1",
    "next": "^13.0.4",
    "postcss": "^8.4.19",
    "react": "^18.2.0",
    "react-dom": "^18.2.0",
    "react-error-boundary": "^3.1.4",
    "react-hot-toast": "^2.4.0",
    "react-icons": "^4.6.0",
    "satori": "^0.0.44",
    "simple-icons": "^7.19.0",
    "styled-jsx": "^5.1.0",
    "tailwindcss": "^3.2.4",
    "typescript": "~4.9.3",
    "use-debounce": "^8.0.4",
    "yoga-wasm-web": "0.1.2"
  },
  "devDependencies": {
    "@testing-library/jest-dom": "^5.16.5",
    "@testing-library/react": "^13.4.0",
    "eslint": "^8.28.0",
    "eslint-config-prettier": "^8.5.0",
    "eslint-config-prettier-standard": "^4.0.1",
    "eslint-config-react-app": "^7.0.1",
    "eslint-config-standard": "^17.0.0",
    "eslint-plugin-jest": "^27.1.5",
    "eslint-plugin-n": "^15.5.1",
    "eslint-plugin-prettier": "^4.2.1",
    "eslint-plugin-promise": "^6.1.1",
    "eslint-plugin-react": "^7.31.11",
    "eslint-plugin-react-hooks": "^4.6.0",
    "graphql": "^16.6.0",
    "graphql-compiler": "^1.7.0",
    "husky": "^8.0.2",
    "identity-obj-proxy": "^3.0.0",
    "jest": "^29.3.1",
    "jest-environment-jsdom": "^29.3.1",
    "prettier": "^2.7.1",
    "prettier-config-standard": "^5.0.0"
  },
  "browserslist": {
    "production": [
      ">0.2%",
      "not dead",
      "not op_mini all"
    ],
    "development": [
      "last 1 chrome version",
      "last 1 firefox version",
      "last 1 safari version"
    ]
  }
}