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

42 lines
1.1 KiB
JSON

{
"name": "know-it-all",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "npm start -w",
"prebuild": "npm run env",
"build": "npm build -w client",
"predev": "npm run build",
"dev": "npm start server",
"package": "tar -czf ./dist.tar.gz ./client ./node_modules ./server LICENSE package-lock.json package.json",
"predist": "npm ci && npm run build && npm run env:remove",
"dist": "npm run package",
"pretest": "npm run env",
"test": "npm run test -w server",
"env": "npm run env --ws && touch db.sqlite3",
"env:remove": "npm run env:remove -w client && rm .env",
"migrate": "npm run migrate -w server",
"migrate:undo": "npm run migrate:undo -w server"
},
"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"
}
}