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-12 19:31:35 -06:00

26 lines
810 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 build --prefix client",
"test": "npm run build && npm run server",
"install-all": "npm i && npm i --prefix client && npm i --prefix server",
"audit-all": "npm audit fix && npm audit fix --prefix client && npm audit fix --prefix server"
},
"author": "C4 Patino",
"license": "ISC",
"dependencies": {
"build": "^0.1.4",
"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"
}
}