-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.3 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
{
"name": "portfolio",
"author": "monciego",
"description": "my portfolio",
"version": "0.1.0",
"private": true,
"license": "MIT",
"engines": {
"node": ">=16.0.0",
"yarn": ">=1.22.0",
"npm": "please-use-yarn"
},
"scripts": {
"dev": "cross-env NODE_OPTIONS='--inspect' next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prettier": "prettier --write .",
"prepare": "husky install"
},
"dependencies": {
"@types/react-scroll": "^1.8.6",
"gray-matter": "^4.0.3",
"gsap": "^3.11.4",
"next": "12.3.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-icons": "^4.7.1",
"react-parallax": "^3.5.1",
"react-scroll": "^1.8.9",
"remark": "^14.0.2",
"remark-html": "^15.0.2",
"styled-components": "^5.3.6"
},
"devDependencies": {
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@svgr/webpack": "^6.5.1",
"@types/node": "18.7.18",
"@types/react": "18.0.20",
"@types/react-dom": "18.0.6",
"@types/styled-components": "^5.1.26",
"cross-env": "^7.0.3",
"eslint": "8.23.1",
"eslint-config-next": "12.3.1",
"husky": "^8.0.1",
"prettier": "^2.7.1",
"typescript": "4.8.3"
},
"resolutions": {
"styled-components": "^5"
}
}