forked from HamishMW/portfolio
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.78 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.78 KB
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",
"version": "1.0.0",
"homepage": "https://lorenzschreyer.de",
"description": "Portfolio site for Lorenz Schreyer forked by Hamish Williams",
"repository": "https://github.com/lorenzschreyer/portfolio.git",
"author": "Lorenz Schreyer <dev@lorenzschreyer.de>",
"devDependencies": {
"@mapbox/rehype-prism": "^0.9.0",
"@svgr/webpack": "^6.3.1",
"esbuild": "^0.15.2",
"eslint": "^8.21.0",
"eslint-config-next": "^12.2.5",
"fs-extra": "^10.1.0",
"globby": "^13.1.2",
"postcss": "^8.4.16",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-preset-env": "^7.7.2",
"prettier": "^2.7.1",
"puppeteer": "^16.1.0",
"reading-time": "^1.5.0",
"rehype-img-size": "^1.0.1",
"rehype-preset-minify": "^6.0.0",
"rehype-slug": "^5.0.1",
"stylelint": "^14.9.1",
"stylelint-config-css-modules": "^4.1.0",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-standard": "^26.0.0"
},
"dependencies": {
"framer-motion": "^7.1.0",
"i18next": "^23.10.0",
"mdx-bundler": "^9.0.1",
"next": "^14.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-i18next": "^14.0.5",
"three": "^0.146.0",
"three-stdlib": "^2.18.1"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"deploy": "aws s3 sync --delete out/ s3://aws-lorenz-portfolio",
"deploy:functions": "cd functions && npm run deploy",
"start": "next start",
"test": "echo 'write some tests'"
},
"browserslist": {
"production": [
">10%",
"not dead",
"not ie 11",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"engines": {
"npm": ">=8.6.0",
"node": ">=18.0.0"
}
}