This repository has been archived on 2025-11-04. You can view files and clone it, but you cannot make any changes to its state, such as pushing and creating new issues, pull requests or comments.
know-it-all/package.json
2022-12-13 22:49:13 -06:00

38 lines
1.2 KiB
JSON

{
"name": "know-it-all",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "concurrently \"npm run start -w client\" \"npm run start -w server\"",
"start:server": "npm start server",
"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",
"env": "npm run env --ws && touch db.sqlite3 test_db.sqlite3",
"env:remove": "npm run env:remove -w client && rm .env",
"test": "npm run test -w server",
"migrate": "npm run migrate -w server",
"migrate:undo": "npm run migrate:undo -w server",
"prebuild": "npm run env",
"predev": "npm run build",
"predist": "npm ci && npm run build && npm run env:remove",
"pretest": "npm run env"
},
"author": "C4 Patino",
"license": "ISC",
"workspaces": [
"client",
"server"
],
"dependencies": {
"create-react-app": "^5.0.0",
"dotenv": "^16.0.0",
"express-generator": "^4.2.0",
"js-cookie": "^3.0.1"
},
"devDependencies": {
"concurrently": "^7.6.0",
"sequelize-cli": "^6.4.1"
}
}