-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.99 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
{
"name": "portfolio",
"description": "Personal portfolio",
"homepage": "https://portfolio-eta-eight-97.vercel.app/",
"private": true,
"version": "1.0.0",
"author": "Florian Bühler <[email protected]>",
"keywords": [
"nextjs"
],
"license": "MIT",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"eslint": "eslint . --ext .js,.ts,.tsx",
"fix-eslint": "eslint . --ext .js,.ts,.tsx --fix",
"analyze": "cross-env ANALYZE=true next build",
"analyze:server": "cross-env BUNDLE_ANALYZE=server next build",
"analyze:browser": "cross-env BUNDLE_ANALYZE=browser next build"
},
"repository": {
"type": "git",
"url": "https://github.com/florianbuehler/portfolio"
},
"bugs": {
"url": "https://github.com/florianbuehler/portfolio/issues"
},
"dependencies": {
"@next/font": "^13.1.6",
"@types/animejs": "^3.1.5",
"@types/react": "^18.0.17",
"@types/react-dom": "^18.0.6",
"@types/react-helmet": "^6.1.5",
"@types/react-slick": "^0.23.10",
"@types/react-transition-group": "^4.4.5",
"@types/scrollreveal": "^0.0.8",
"@types/styled-components": "^5.1.26",
"animejs": "^3.2.1",
"gray-matter": "^4.0.3",
"next": "^13.1.6",
"next-mdx-remote": "^4.3.0",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"react-helmet": "^6.1.0",
"react-slick": "^0.29.0",
"react-transition-group": "^4.4.5",
"scrollreveal": "^4.0.9",
"slick-carousel": "^1.8.1",
"styled-components": "^5.3.5"
},
"devDependencies": {
"@next/bundle-analyzer": "^13.1.6",
"@types/node": "18.13.0",
"@typescript-eslint/eslint-plugin": "^5.37.0",
"@typescript-eslint/parser": "^5.37.0",
"cross-env": "^7.0.3",
"eslint-config-next": "^12.3.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.5.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.7.1",
"typescript": "^4.8.3"
}
}