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

33 lines
925 B
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",
"start:client": "npm start client",
"build": "npm run build -w client",
"test": "npm run test -w server",
"migrate": "npm run migrate -w server",
"migrate:undo": "npm run migrate:undo -w server"
},
"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": {
"client": "^0.1.0",
"concurrently": "^7.6.0",
"remove": "^0.1.5",
"sequelize-cli": "^6.4.1"
}
}