Skip to content

Commit

Permalink
install all packages and modified README b00tc4mp#99
Browse files Browse the repository at this point in the history
  • Loading branch information
TatiGV committed Aug 10, 2024
1 parent 9ae2d41 commit cedc14b
Show file tree
Hide file tree
Showing 19 changed files with 3,894 additions and 160 deletions.
844 changes: 844 additions & 0 deletions staff/tatiana-garcia/project/api/package-lock.json

Large diffs are not rendered by default.

23 changes: 23 additions & 0 deletions staff/tatiana-garcia/project/api/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{
"name": "api",
"version": "1.0.0",
"main": "index.js",
"type": "module",
"scripts": {
"start": "node .",
"watch": "node --watch.",
"inspect": "node --inspect-brk .",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"com": "file:../com",
"cor": "file:../cor",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"jsonwebtoken": "^9.0.2"
}
}
21 changes: 21 additions & 0 deletions staff/tatiana-garcia/project/app/.eslintrc.cjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
module.exports = {
root: true,
env: { browser: true, es2020: true },
extends: [
'eslint:recommended',
'plugin:react/recommended',
'plugin:react/jsx-runtime',
'plugin:react-hooks/recommended',
],
ignorePatterns: ['dist', '.eslintrc.cjs'],
parserOptions: { ecmaVersion: 'latest', sourceType: 'module' },
settings: { react: { version: '18.2' } },
plugins: ['react-refresh'],
rules: {
'react/jsx-no-target-blank': 'off',
'react-refresh/only-export-components': [
'warn',
{ allowConstantExport: true },
],
},
}
Loading

0 comments on commit cedc14b

Please sign in to comment.