-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 741 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 741 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
{
"name": "capturecascade-timeline",
"version": "1.0.0",
"description": "CaptureCascade Timeline - Integrated Hugo static site and React interactive viewer",
"private": true,
"scripts": {
"dev": "node dev-server.js",
"build": "npm run build:hugo && npm run build:viewer",
"build:hugo": "cd hugo-site && hugo",
"build:viewer": "cd timeline/viewer && npm run build",
"clean": "rm -rf hugo-site/public timeline/viewer/build",
"install:all": "cd timeline/viewer && npm install"
},
"dependencies": {
"express": "^4.18.2"
},
"engines": {
"node": ">=18.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/yourusername/CaptureCascadeTimeline.git"
},
"license": "MIT"
}