-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.61 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.61 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
{
"name": "oliverplummer.com.au",
"description": "oliverplummer.com.au",
"version": "0.1.0",
"private": true,
"type": "module",
"author": {
"name": "Oliver Plummer",
"email": "oliver.plummer@outlook.com",
"url": "https://github.com/olyop/oliverplummer.com.au"
},
"bugs": {
"url": "https://github.com/olyop/oliverplummer.com.au/issues",
"email": "oliver.plummer@outlook.com"
},
"volta": {
"node": "20.16.0",
"npm": "10.8.2"
},
"scripts": {
"dev": "next dev --turbo --experimental-https --experimental-https-key /home/op/.mkcert/localhost-key.pem --experimental-https-cert /home/op/.mkcert/localhost.pem",
"build": "next build",
"start": "next start",
"lint": "next lint",
"deploy-clear": "aws s3 rm s3://oliverplummer.s3.ap-southeast-2.amazonaws.com --recursive",
"deploy-sync": "aws s3 sync --cache-control max-age=31536000 ./out/ s3://oliverplummer.s3.ap-southeast-2.amazonaws.com",
"deploy": "npm run build && npm run deploy-clear && npm run deploy-sync"
},
"dependencies": {
"@fontsource-variable/rubik": "5.0.22",
"@heroicons/react": "2.1.5",
"clsx": "2.1.1",
"next": "14.2.5",
"react": "18.3.1",
"react-dom": "18.3.1",
"sharp": "0.33.4",
"tailwindcss": "3.4.9"
},
"devDependencies": {
"@oly_op/cspell-dict": "1.1.16",
"@oly_op/eslint-config": "6.7.23",
"@oly_op/eslint-config-react": "4.3.11",
"@oly_op/prettier-config": "1.9.7",
"@oly_op/tsconfig": "1.2.3",
"@types/node": "22.2.0",
"@types/react": "18.3.3",
"@types/react-dom": "18.3.0",
"autoprefixer": "10.4.20",
"npm-check-updates": "17.0.6",
"postcss": "8.4.41",
"postcss-load-config": "6.0.1"
}
}