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

21 lines
661 B
JSON

{
"name": "test-site",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"client": "npm run start --prefix client",
"server": "npm run start --prefix server",
"build": "npm run build --prefix client",
"test-dev": "npm run build --prefix client && npm run server",
"dev": "concurrently \"npm run start --prefix server\" \"npm run start --prefix client\""
},
"author": "C4 Patino",
"license": "ISC",
"dependencies": {
"concurrently": "^7.0.0",
"create-react-app": "^5.0.0",
"dotenv": "^16.0.0",
"express-generator": "^4.2.0"
}
}