-
-
Notifications
You must be signed in to change notification settings - Fork 106
/
package.json
75 lines (75 loc) · 2.26 KB
/
package.json
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
{
"name": "socialify",
"version": "2.9.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",
"test:update-snapshot": "jest -u",
"start": "next start",
"lint": "biome ci --verbose --max-diagnostics=999 .",
"lint:fix": "biome check --write --verbose --max-diagnostics=999 .",
"lint:fix-unsafe": "biome check --write-unsafe --verbose --max-diagnostics=999 .",
"verify": "yarn lint && yarn test && yarn build",
"download-font": "./fonts/download-font.sh",
"postinstall": "cp ./node_modules/yoga-wasm-web/dist/yoga.wasm ./public/yoga.wasm; cp ./node_modules/@resvg/resvg-wasm/index_bg.wasm ./public/resvg_bg.wasm",
"prepare": "is-ci || husky"
},
"dependencies": {
"@changesets/cli": "^2.27.8",
"@resvg/resvg-wasm": "^2.6.2",
"autoprefixer": "^10.4.20",
"badgen": "^3.2.3",
"clsx": "^2.1.1",
"copee": "^1.0.6",
"daisyui": "^2.46.1",
"hero-patterns": "^2.1.0",
"is-ci": "^3.0.1",
"next": "^14.2.8",
"postcss": "^8.4.45",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-error-boundary": "^4.0.13",
"react-hot-toast": "^2.4.1",
"react-icons": "^5.3.0",
"satori": "^0.10.14",
"simple-icons": "^11.13.0",
"styled-jsx": "^5.1.6",
"tailwindcss": "^3.4.10",
"typescript": "~5.5.4",
"use-debounce": "^10.0.3",
"yoga-wasm-web": "^0.3.3"
},
"devDependencies": {
"@biomejs/biome": "^1.8.3",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/react": "^16.0.1",
"@types/jest": "^29.5.12",
"@types/react": "18.3.5",
"graphql": "^16.9.0",
"graphql-compiler": "^1.7.0",
"husky": "^9.1.5",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}