39 lines
1.3 KiB
JSON
39 lines
1.3 KiB
JSON
{
|
|
"name": "qoverflow",
|
|
"version": "1.0.0",
|
|
"description": "qOverflow client and server",
|
|
"main": "index.js",
|
|
"homepage": "https://github.com/spicecat/qOverflow",
|
|
"scripts": {
|
|
"start": "concurrently \"npm start -w client\" \"npm start -w server\"",
|
|
"start:server": "npm start -w server",
|
|
"start:client": "npm start -w client",
|
|
"start:prod": "npm run prod -w server",
|
|
"prestart:prod": "npm ci && npm run build",
|
|
"build": "npm run build -w client",
|
|
"build:package": "tar -czf dist.tar.gz client node_modules server LICENSE package-lock.json package.json",
|
|
"dist": "npm run build:package",
|
|
"predeploy": "npm run predeploy -w client",
|
|
"deploy": "npm run deploy -w client",
|
|
"predist": "npm ci && npm run build"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/spicecat/qOverflow.git"
|
|
},
|
|
"author": "C4 Patino, Tejus Krishan, Andy Teh",
|
|
"license": "ISC",
|
|
"bugs": {
|
|
"url": "https://github.com/spicecat/qOverflow/issues"
|
|
},
|
|
"workspaces": [
|
|
"client",
|
|
"server"
|
|
],
|
|
"devDependencies": {
|
|
"concurrently": "^7.3.0"
|
|
},
|
|
"dependencies": {
|
|
"react-copy-to-clipboard": "^5.1.0"
|
|
}
|
|
}
|