forked from EddieHubCommunity/BioDrop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
94 lines (94 loc) · 2.68 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
88
89
90
91
92
93
94
{
"name": "linkfree",
"version": "1.46.60",
"private": false,
"homepage": "https://linkfree.eddiehub.org",
"dependencies": {
"@headlessui/react": "^1.7.7",
"@heroicons/react": "^2.0.13",
"@mdx-js/loader": "^2.2.1",
"@mdx-js/react": "^2.2.1",
"@next/mdx": "^13.1.1",
"@tailwindcss/forms": "^0.5.3",
"@tailwindcss/typography": "^0.5.8",
"autoprefixer": "^10.4.13",
"dotenv": "^16.0.3",
"js-abbreviation-number": "^1.4.0",
"mongoose": "^6.8.3",
"next": "^13.1.1",
"qrcode.react": "^3.1.0",
"react": "^18.2.0",
"react-children-utilities": "^2.8.0",
"react-dom": "^18.2.0",
"react-icons": "^4.7.1",
"react-markdown": "^8.0.4",
"remark-gfm": "^3.0.1",
"remark-prism": "^1.3.6",
"tailwindcss": "^3.2.4"
},
"scripts": {
"dev": "next dev",
"dev:docker": "ncp ./.env.docker ./.env && next dev",
"dev-wsl": "HOST=$(hostname -I | awk '{print $1}') && next dev --hostname ${HOST}",
"build": "next build",
"test": "npx playwright test --trace on",
"start": "next start",
"lint": "next lint",
"prepare": "husky install",
"format": "prettier --write .",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"postinstall": "ncp ./.env.example ./.env",
"create": "npx linkfree-cli"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@axe-core/playwright": "^4.5.2",
"@babel/core": "^7.20.12",
"@playwright/test": "^1.29.2",
"babel-loader": "^9.1.2",
"concurrently": "^7.6.0",
"eslint": "^8.31.0",
"eslint-config-next": "^13.1.1",
"eslint-plugin-storybook": "^0.6.8",
"husky": "^8.0.3",
"linkfree-cli": "^1.4.1",
"lint-staged": "^13.1.0",
"ncp": "^2.0.0",
"postcss": "^8.4.21",
"prettier": "^2.8.2"
},
"description": "LinkFree connect audiences to all of your content with just one link. It is an open-source alternative to [Linktree](https://linktr.ee/) implemented in JavaScript - It was initially created on a YouTube [live stream](https://www.youtube.com/watch?v=Jorl_vcp-Ew).",
"repository": {
"type": "git",
"url": "git+https://github.com/EddieHubCommunity/LinkFree.git"
},
"keywords": [
"javascript",
"linktree",
"socials",
"eddiehub",
"reactjs",
"react",
"nextjs"
],
"lint-staged": {
"data/*.json": "prettier --write"
},
"author": "EddieHubCommunity",
"license": "MIT",
"bugs": {
"url": "https://github.com/EddieHubCommunity/LinkFree/issues"
}
}