forked from subratomandal/s3explorer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
22 lines (22 loc) · 756 Bytes
/
package.json
File metadata and controls
22 lines (22 loc) · 756 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name": "railway-bucket-explorer",
"version": "1.0.0",
"description": "A web-based file explorer for Railway S3 buckets",
"private": true,
"scripts": {
"dev": "concurrently \"npm run dev:server\" \"npm run dev:client\"",
"dev:server": "cd apps/server && npm run dev",
"dev:client": "cd apps/client && npm run dev",
"build": "npm run build:client && npm run build:server",
"build:client": "cd apps/client && npm run build",
"build:server": "cd apps/server && npm run build",
"start": "cd apps/server && npm start",
"install:all": "npm install && cd apps/client && npm install && cd ../server && npm install"
},
"devDependencies": {
"concurrently": "^8.2.2"
},
"engines": {
"node": ">=18.0.0"
}
}