-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
103 lines (103 loc) · 3.15 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
{
"name": "pobermeier-portfolio-v3",
"version": "1.0.0",
"description": "Patrick Obermeier's Personal Portfolio Website build with Next.js, TailwindCSS, GraphQL & Dato CMS.",
"keywords": [
"react",
"nextjs",
"next",
"graphql",
"datocms",
"dato",
"portfolio",
"portfolio-website",
"tailwind",
"tailwind-css"
],
"author": "Patrick Obermeier",
"license": "MIT",
"private": true,
"scripts": {
"build": "yarn clean && next build",
"build:netlify": "yarn test && yarn export",
"build:storybook": "build-storybook",
"clean": "rm -rf .next out",
"dev": "next dev",
"dev:docker": "docker-compose up dev",
"export": "yarn build && next export",
"format": "prettier --write ./src",
"format:check": "prettier --check ./src",
"generate:mocks": "node ./src/scripts/fetchMockData.js",
"lint": "next lint",
"lint:fix": "next lint --fix",
"netlify:login": "netlify login",
"netlify:deploy": "yarn export && netlify deploy",
"prepare": "husky install",
"postbuild": "next-sitemap",
"start": "next start",
"start:docker": "docker run -p 3000:3000 pobermeier-portfolio",
"start:static": "serve ./out",
"start:storybook": "start-storybook -p 6006",
"test": "npm run lint && npm run ts-validate",
"ts-validate": "tsc --pretty --noEmit"
},
"dependencies": {
"@headlessui/react": "^1.4.2",
"@heroicons/react": "^1.0.5",
"@sentry/nextjs": "^6.17.2",
"aos": "^3.0.0-beta.6",
"babel-plugin-inline-react-svg": "^2.0.1",
"classnames": "^2.3.1",
"graphql": "^16.2.0",
"graphql-request": "^3.7.0",
"next": "12.0.7",
"react": "17.0.2",
"react-datocms": "^2.0.1",
"react-dom": "17.0.2",
"react-markdown": "^7.1.2"
},
"devDependencies": {
"@babel/core": "^7.16.12",
"@storybook/addon-actions": "^6.4.17",
"@storybook/addon-essentials": "^6.4.17",
"@storybook/addon-links": "^6.4.17",
"@storybook/addon-postcss": "^2.0.0",
"@storybook/builder-webpack5": "^6.4.17",
"@storybook/manager-webpack5": "^6.4.17",
"@storybook/react": "^6.4.17",
"@tailwindcss/forms": "^0.4.0",
"@tailwindcss/typography": "^0.5.0",
"@types/aos": "^3.0.4",
"@types/node": "17.0.8",
"@types/react": "17.0.38",
"@typescript-eslint/eslint-plugin": "^5.9.0",
"autoprefixer": "^10.4.2",
"babel-loader": "^8.2.3",
"eslint": "8.6.0",
"eslint-config-next": "12.0.7",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-storybook": "^0.5.6",
"husky": "^7.0.4",
"lint-staged": "^12.1.6",
"netlify-cli": "^8.8.2",
"next-sitemap": "^1.8.4",
"postcss": "^8.4.5",
"postcss-import": "^14.0.2",
"prettier": "^2.5.1",
"serve": "^13.0.2",
"storybook-tailwind-dark-mode": "^1.0.11",
"tailwindcss": "^3.0.11",
"typescript": "4.5.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Pobermeier/pobermeier-portfolio-v3.git"
},
"bugs": {
"url": "https://github.com/Pobermeier/pobermeier-portfolio-v3.git/issues"
},
"homepage": "https://github.com/Pobermeier/pobermeier-portfolio-v3.git#readme",
"resolutions": {
"webpack": "^5"
}
}