-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.62 KB
/
package.json
File metadata and controls
33 lines (33 loc) · 1.62 KB
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
32
33
{
"name": "PromptHub",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"postinstall": "concurrently -n \"shared,client,server\" \"npm run shared-install\" \"npm run client-install\" \"npm run server-install\"",
"test": "echo \"Error: no test specified\" && exit 1",
"client": "cd client && npm run dev",
"client-install": "cd client && npm install",
"server": "cd server && npm run dev",
"server-install": "cd server && npm install",
"shared-install": "cd shared && npm install && npm run build",
"start": "concurrently -n \"client,server\" \"npm run client\" \"npm run server\"",
"build": "cd shared && npm run build && cd ../server && npm run build && cd ../client && npm run build",
"lint": "concurrently -n \"client,server,shared\" \"cd client && npm run lint\" \"cd server && npm run lint\" \"cd shared && npm run lint\"",
"lint:fix": "concurrently -n \"client,server,shared\" \"cd client && npm run lint -- --fix\" \"cd server && npm run lint -- --fix\" \"cd shared && npm run lint -- --fix\"",
"debug": "concurrently -n \"client,server\" \"npm run client\" \"cross-env NODE_OPTIONS=--inspect-brk=9229 npm run server\"",
"seed": "cd server && tsx scripts/seedDatabase.ts",
"clean-db": "cd server && tsx scripts/cleanDatabase.ts",
"reset-db": "cd server && tsx scripts/resetDatabase.ts",
"make-admin": "cd server && tsx scripts/makeAdmin.ts",
"test-api-key": "cd server && tsx scripts/testApiKey.ts"
},
"author": "",
"license": "MIT",
"description": "",
"dependencies": {
"concurrently": "^9.1.0"
},
"devDependencies": {
"cross-env": "^7.0.3"
}
}