forked from Qortal/qort.trade
16 lines
532 B
JSON
16 lines
532 B
JSON
{
|
|
"name": "game-1",
|
|
"version": "1.0.0",
|
|
"description": "A full-stack application with React and Express",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"install-client": "cd client && npm install",
|
|
"build-client": "cd client && npm run build",
|
|
"install-server": "cd server && npm install",
|
|
"start-server": "cd server && node index.js",
|
|
"postinstall": "npm run install-client && npm run build-client && npm run install-server",
|
|
"start": "npm run start-server"
|
|
},
|
|
"author": ""
|
|
}
|
|
|