-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.18 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
{
"name": "portfolio-2022",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "rm -rf .next && next build",
"start": "next start",
"export": "rm -rf out && next export -o out/blog",
"lint": "yarn lint:eslint && yarn lint:types",
"lint:fix": "yarn lint:eslint --fix && yarn lint:types",
"lint:eslint": "next lint",
"lint:types": "tsc --noEmit",
"prettier": "prettier --write .",
"prettier:check": "prettier --check .",
"prepare": "husky install"
},
"dependencies": {
"@emotion/react": "^11.10.4",
"@mdx-js/react": "^1.6.22",
"classnames": "^2.3.2",
"gsap": "^3.11.5",
"imagesloaded": "^5.0.0",
"next": "^12.3.1",
"next-seo": "^5.5.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"theme-ui": "^0.14.7"
},
"devDependencies": {
"@types/node": "^16.11.60",
"@types/react": "^17.0.50",
"eslint": "^8.24.0",
"eslint-config-next": "^12.3.1",
"husky": "^8.0.1",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-nested": "^5.0.6",
"postcss-preset-env": "^7.8.2",
"prettier": "^2.7.1",
"typescript": "4.8.3"
},
"engines": {
"node": ">=16"
}
}