mirror of
https://github.com/Pythagora-io/gpt-pilot.git
synced 2026-01-09 13:17:55 -05:00
25 lines
834 B
JSON
25 lines
834 B
JSON
{
|
|
"name": "{{ project_name }}",
|
|
"version": "1.0.0",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"postinstall": "concurrently -n \"client,server\" \"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",
|
|
"start": "concurrently -n \"client,server\" \"npm run client\" \"npm run server\"",
|
|
"debug": "concurrently -n \"client,server\" \"npm run client\" \"cross-env NODE_OPTIONS=--inspect-brk=9229 npm run server\""
|
|
},
|
|
"author": "",
|
|
"license": "ISC",
|
|
"description": "",
|
|
"dependencies": {
|
|
"concurrently": "^9.1.0"
|
|
},
|
|
"devDependencies": {
|
|
"cross-env": "^7.0.3"
|
|
}
|
|
}
|