-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·112 lines (112 loc) · 3.17 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "aggutierrez",
"description": "Personal Portfolio",
"version": "1.10.0",
"private": true,
"license": "MIT",
"homepage": "https://aggutierrez.com",
"repository": {
"url": "https://github.com/aggutierrez98/aggutierrez-portfolio",
"type": "git"
},
"author": "Agustin Manuel Gutierrez <[email protected]>",
"keywords": [
"react",
"typescript",
"postcss",
"nextjs",
"cssmodules",
"framer-motion",
"personal-website"
],
"scripts": {
"dev": "infisical run -- next dev",
"dev-open": "yarn open & yarn dev",
"open": "open http://localhost:3000",
"build": "next build",
"analyze": "cross-env ANALYZE=true yarn build",
"start": "infisical run -- next start",
"lint": "eslint . --cache --fix",
"stylelint": "stylelint **/*.css **/*.module.css --cache --fix",
"stylelint-check": "stylelint-config-prettier-check",
"prettier": "prettier . --write",
"check-types": "tsc --noemit",
"spell-check": "spellchecker --config .spellcheckerrc.json",
"prepare": "husky install"
},
"dependencies": {
"@emailjs/browser": "3.6.2",
"@react-md/icon": "5.1.3",
"@react-md/material-icons": "5.1.3",
"@vegadev/react-type-writer": "^1.2.3",
"@vercel/analytics": "^1.0.1",
"copy-text-to-clipboard": "3.0.1",
"framer-motion": "^6.5.1",
"next": "13.4.2",
"next-pwa": "5.6.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"swiper": "^11.0.6"
},
"devDependencies": {
"@next/bundle-analyzer": "^13.4.3",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"@svgr/webpack": "^6.3.1",
"@types/node": "17.0.25",
"@types/react": "18.0.5",
"@types/react-dom": "18.0.1",
"@typescript-eslint/eslint-plugin": "^5.38.1",
"@typescript-eslint/parser": "^5.38.1",
"autoprefixer": "^10.4.4",
"cross-env": "^7.0.3",
"eslint": "8.13.0",
"eslint-config-next": "^13.4.2",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jsx-a11y": "6.6.1",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-react": "7.29.4",
"eslint-plugin-react-hooks": "4.6.0",
"express": "^4.18.2",
"husky": "^8.0.0",
"lint-staged": "^13.0.3",
"next-images": "^1.8.4",
"postcss": "^8.4.12",
"postcss-nested": "^5.0.6",
"postcss-scss": "^4.0.5",
"prettier": "^2.8.8",
"semantic-release": "^19.0.5",
"spellchecker-cli": "^6.1.1",
"stylelint": "^14.13.0",
"stylelint-config-css-modules": "^4.1.0",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-recommended-scss": "^7.0.0",
"typescript": "4.5.5"
},
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/github",
"@semantic-release/npm",
"@semantic-release/git"
],
"release": {
"prepare": [
"@semantic-release/changelog",
"@semantic-release/npm",
{
"path": "@semantic-release/git",
"assets": [
"package.json",
"yarn-lock.json",
"CHANGELOG.md"
]
}
],
"branches": [
"main"
]
}
}