-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 873 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 873 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
{
"name": "hook-forge",
"version": "2.0.0",
"description": "AI-Powered Hook Generator for X Writers",
"main": "index.js",
"scripts": {
"dev": "concurrently \"bun run dev:server\" \"bun run dev:client\"",
"dev:server": "cd server && bun run dev",
"dev:client": "cd client && bun run dev",
"build": "bun run build:client && bun run build:server",
"build:client": "cd client && bun run build",
"build:server": "cd server && bun run build",
"start": "cd server && bun start",
"start:prod": "NODE_ENV=production bun server/dist/index.js",
"install:all": "bun install && cd server && bun install && cd ../client && bun install"
},
"keywords": [
"writing",
"twitter",
"x",
"hooks",
"ai",
"content-creation"
],
"author": "",
"license": "MIT",
"devDependencies": {
"concurrently": "^8.2.2"
}
}