-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
75 lines (75 loc) · 1.83 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": "linkfolio",
"version": "0.11.0",
"description": "Minimalist web page that acts as a hub for all your online presence",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"packageManager": "[email protected]",
"scripts": {
"dev": "next dev",
"build": "next build",
"build:package": "sh ./scripts/build.sh",
"start": "next start",
"lint": "next lint"
},
"sideEffects": false,
"keywords": [
"next.js",
"tailwind",
"linktree",
"ssr",
"portfolio",
"template"
],
"files": [
"dist",
"tailwind.config.ts",
"LICENSE",
"README.md"
],
"author": "Alexandre Mogère (heristop)",
"repository": {
"type": "git",
"url": "git+https://github.com/heristop/linkfolio.git"
},
"license": "MIT",
"dependencies": {
"next": "15.0.0-rc.0",
"react": "19.0.0-rc-f994737d14-20240522",
"react-dom": "19.0.0-rc-f994737d14-20240522"
},
"peerDependencies": {
"next": "^14.0.0",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"sharp": "^0.33.3",
"tailwindcss": "^3.4.3"
},
"peerDependenciesMeta": {
"sharp": {
"optional": true
}
},
"devDependencies": {
"@babel/plugin-transform-nullish-coalescing-operator": "^7.24.7",
"@playwright/test": "^1.47.2",
"@swc/core": "^1.7.28",
"@types/node": "^22.6.1",
"@types/react": "^18.3.9",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^8.7.0",
"autoprefixer": "^10.4.20",
"eslint": "^8.57.0",
"eslint-config-next": "15.0.2",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-prettier": "^5.2.1",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"postcss": "^8.4.47",
"prettier": "^3.3.3",
"tsup": "^8.3.0",
"typescript": "^5.6.2"
}
}