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

46 lines
1.5 KiB
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:client": "npm start -w client",
"start:server": "npm start -w server",
"build": "npm run build -w client",
"build:package": "tar -czf dist.tar.gz client node_modules server LICENSE package-lock.json package.json",
"dist": "npm run build:package",
"test": "npm run test -w server",
"migrate": "npm run migrate -w server",
"migrate:undo": "npm run migrate:undo -w server",
"predist": "npm ci && npm run build",
"eslint": "npx eslint",
"eslint:fix": "npx eslint --fix",
"eslint:all": "npx eslint '**'",
"eslint:all:fix": "npx eslint '**' --fix",
"storybook": "npm run storybook -w client"
},
"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": {
"concurrently": "^7.6.0",
"eslint": "^8.30.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.1.7",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-react": "^7.31.11",
"eslint-plugin-react-hooks": "^4.6.0",
"sequelize-cli": "^6.4.1"
}
}