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

27 lines
1,000 B
JSON

{
"name": "test-site",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"client": "npm start --prefix client",
"server": "npm start --prefix server",
"build": "npm run env && npm run build --prefix client",
"test": "npm run build && npm run server",
"install-all": "npm ci && npm ci --prefix client && npm ci --prefix server",
"env": "cp .env ./server/.env && cp .env ./client/.env",
"package": "tar -czf ./dist.tar.gz ./.github ./.vscode ./client ./node_modules ./server .env .gitignore LICENSE package-lock.json package.json README.md",
"dist": "npm run install-all && npm run build && npm run package"
},
"author": "C4 Patino",
"license": "ISC",
"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"
}
}