-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.37 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
{
"private": true,
"name": "papa-portfolio",
"version": "2.0.0",
"description": "Web de Cristóbal Beltrán Sánchez",
"repository": {
"type": "git",
"url": "git+https://github.com/Belco90/papa-portfolio.git"
},
"author": "Mario Beltrán",
"license": "MIT",
"bugs": {
"url": "https://github.com/Belco90/papa-portfolio/issues"
},
"homepage": "https://cristobalbeltran.es/",
"engines": {
"pnpm": "^8.1.0"
},
"packageManager": "[email protected]",
"scripts": {
"start": "pnpm dev",
"dev": "next",
"build": "next build",
"serve": "next start",
"lint": "next lint",
"lint:fix": "pnpm lint -- --fix",
"format": "prettier . --write --ignore-path .gitignore --ignore-unknown",
"type-check": "tsc",
"prepare": "is-ci || husky install"
},
"dependencies": {
"@tailwindcss/forms": "^0.5.3",
"classnames": "^2.3.2",
"next": "^13.3.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hot-toast": "^2.4.0",
"react-icons": "^4.8.0"
},
"devDependencies": {
"@types/node": "^18.15.11",
"@types/react": "^18.0.33",
"autoprefixer": "^10.4.14",
"eslint": "^8.38.0",
"eslint-config-next": "^13.3.0",
"eslint-config-prettier": "^8.8.0",
"husky": "^8.0.3",
"is-ci": "^3.0.1",
"lint-staged": "^13.2.1",
"postcss": "^8.4.31",
"prettier": "2.8.7",
"prettier-plugin-tailwindcss": "^0.2.7",
"tailwindcss": "^3.3.1",
"typescript": "^5.0.4"
}
}