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-03-30 09:46:43 -05:00

33 lines
1,018 B
JSON

{
"name": "know-it-all",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"client": "npm start -w client",
"server": "npm start -w server",
"build": "npm run build -w client",
"dev": "npm run server",
"dist": "npm run package",
"test": "npm run test -w server",
"env": "npm run env --ws && touch test_db.sqlite3",
"package": "tar -czf ./dist.tar.gz ./.github ./.vscode ./client ./node_modules ./server .env .gitignore LICENSE package-lock.json package.json README.md",
"predev": "npm run build",
"predist": "npm ci && npm run build",
"prebuild": "npm run env"
},
"author": "C4 Patino",
"license": "ISC",
"workspaces": [
"*"
],
"dependencies": {
"create-react-app": "^5.0.0",
"dotenv": "^16.0.0",
"express-generator": "^4.2.0",
"js-cookie": "^3.0.1"
},
"devDependencies": {
"sequelize-cli": "^6.4.1"
}
}