-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.71 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
{
"name": "buddywhitman-portfolio",
"version": "0.1.0",
"private": true,
"author": "buddywhitman",
"scripts": {
"dev": "next dev",
"build": "next build",
"postbuild": "next-sitemap --config next-sitemap.config.js",
"start": "next start",
"lint": "next lint",
"lint:fix": "eslint src --fix && yarn format",
"format": "prettier --write src",
"up-latest": "yarn upgrade-interactive --latest",
"release": "standard-version",
"push-release": "git push --follow-tags origin main",
"prepare": "husky install"
},
"dependencies": {
"@apollo/client": "^3.8.5",
"@apollo/graphql": "^14.5.0",
"@chakra-ui/react": "^1.6.9",
"@chakra-ui/theme-tools": "^1.2.1",
"@emotion/cache": "^11.4.0",
"@emotion/react": "^11.11.1",
"@emotion/server": "^11.4.0",
"@emotion/styled": "^11.11.0",
"@fontsource/montserrat": "^5.0.8",
"@fontsource/playfair-display": "^5.0.5",
"@fontsource/raleway": "^5.0.2",
"@million/lint": "^1.0.0-rc.26",
"@types/react-icons": "3.0.0",
"framer-motion": "^4.1.17",
"next": "^12.1.0",
"next-pwa": "^5.3.1",
"next-seo": "^6.1.0",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-hook-form": "^7.43.9",
"react-icons": "^4.8.0",
"react-slick": "^0.28.1",
"react-vertical-timeline-component": "^3.6.0",
"sharp": "^0.32.1"
},
"devDependencies": {
"@chakra-ui/cli": "^1.5.2",
"@commitlint/config-conventional": "^17.6.3",
"@types/react": "^17.0.24",
"commitlint": "^13.1.0",
"copy-webpack-plugin": "9",
"husky": "^7.0.2",
"next-sitemap": "^4.2.3",
"prettier": "^3.0.3",
"standard-version": "^9.3.1",
"typescript": "^4.4.3"
}
}