-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 806 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 806 Bytes
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
{
"name": "chunky-dad-website",
"version": "1.0.0",
"description": "A modern static website for chunky.dad",
"main": "index.html",
"scripts": {
"start": "python3 -m http.server 8000",
"serve": "python3 -m http.server 8000",
"dev": "python3 -m http.server 8000",
"update-test-index": "cd testing && node generate-file-list.js",
"update-test-manifest": "cd testing && node generate-manifest.js",
"setup-hooks": "bash .github/hooks/setup-hooks.sh",
"postinstall": "npm run setup-hooks"
},
"keywords": [
"static",
"website",
"html",
"css",
"javascript",
"responsive"
],
"author": "Your Name",
"license": "MIT",
"dependencies": {
"express": "^5.1.0",
"puppeteer": "^22.15.0",
"jsdom": "^24.0.0",
"sharp": "^0.33.0"
}
}