-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 749 Bytes
/
Copy pathpackage.json
File metadata and controls
23 lines (23 loc) · 749 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "owe-drahn",
"version": "1.0.0",
"engines": {
"node": "^22.8.0"
},
"packageManager": "pnpm@9.0.0",
"description": "The monorepo of Owe Drahn",
"dependencies": {},
"scripts": {
"start": "cd server && npm run start:prod",
"dev:client": "cd client && npm run start",
"dev:server": "cd server && npm run dev",
"build": "npm run build:client && npm run build:server",
"build:client": "cd client && npm run build",
"build:server": "cd server && npm run build",
"heroku-postbuild": "npm run install:client && npm run install:server && npm run build",
"install:client": "cd client && npm install",
"install:server": "cd server && npm install"
},
"author": "DrDreo",
"license": "ISC"
}