initial commit

This commit is contained in:
Jonas_Jones 2023-02-09 14:07:56 +01:00
parent 93b84cffb4
commit bc50c55768
3 changed files with 1626 additions and 10 deletions

1632
package-lock.json generated

File diff suppressed because it is too large Load diff

View file

@ -32,6 +32,8 @@
"babel-preset-env": "^1.7.0",
"body-parser": "^1.20.1",
"express": "^4.18.2",
"http": "^0.0.1-security",
"polyfills": "^2.1.1",
"react": "^18.2.0",
"react-scripts": "^5.0.1"
},

View file

@ -1,4 +1,4 @@
const express = require('express')
import express from 'express';
const app = express();
app.get('/', (req, res) => {
res.send('Welcome to the jonas_jones-api!')