forked from wei/socialify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 2.65 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
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "socialify",
"version": "2.4.2",
"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 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 install"
},
"dependencies": {
"@changesets/cli": "^2.26.0",
"@resvg/resvg-wasm": "^2.2.0",
"@vercel/analytics": "^0.1.6",
"autoprefixer": "^10.4.13",
"badgen": "^3.2.2",
"clsx": "^1.2.1",
"copee": "^1.0.6",
"cross-fetch": "^3.1.5",
"daisyui": "^2.46.1",
"hero-patterns": "^2.1.0",
"is-ci": "^3.0.1",
"next": "^13.1.1",
"postcss": "^8.4.21",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-error-boundary": "^3.1.4",
"react-hot-toast": "^2.4.0",
"react-icons": "^4.7.1",
"satori": "^0.0.45",
"simple-icons": "^7.21.0",
"styled-jsx": "^5.1.1",
"tailwindcss": "^3.2.4",
"typescript": "~4.9.4",
"use-debounce": "^9.0.2",
"yoga-wasm-web": "0.1.2"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"eslint": "^8.31.0",
"eslint-config-prettier": "^8.6.0",
"eslint-config-prettier-standard": "^4.0.1",
"eslint-config-react-app": "^7.0.1",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-n": "^15.6.0",
"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.3",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"prettier": "^2.8.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"
]
}
}