tl-esa-tools/survey
dependabot[bot] 07012b8e4d
Bump @babel/traverse from 7.21.5 to 7.23.9 in /survey
Bumps [@babel/traverse](https://github.com/babel/babel/tree/HEAD/packages/babel-traverse) from 7.21.5 to 7.23.9.
- [Release notes](https://github.com/babel/babel/releases)
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
- [Commits](https://github.com/babel/babel/commits/v7.23.9/packages/babel-traverse)

---
updated-dependencies:
- dependency-name: "@babel/traverse"
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-02-17 20:27:57 +00:00
..
public added info 2024-02-17 22:53:02 +03:00
src fix 2024-02-17 23:05:01 +03:00
.eslintrc.js initial survey renderer 2023-04-29 22:45:52 +03:00
.gitignore gitignore 2023-04-29 22:39:23 +03:00
.prettierrc initial survey renderer 2023-04-29 22:45:52 +03:00
README.md initial survey renderer 2023-04-29 22:45:52 +03:00
build.gradle changed site to docs for github pages 2023-04-30 00:58:10 +03:00
package.json fixed building and local nmp start 2024-02-16 23:24:48 +03:00
tsconfig.json initial survey renderer 2023-04-29 22:45:52 +03:00
yarn.lock Bump @babel/traverse from 7.21.5 to 7.23.9 in /survey 2024-02-17 20:27:57 +00:00

README.md

New React App


This is a blank README file that you can customize at your needs.
Describe your project, how it works and how to contribute to it.


🚀 Available Scripts

In the project directory, you can run:


start

npm start

or

yarn start

Runs the app in the development mode.
Open http://localhost:3000 to view it in the browser.


🧪 test

npm test

or

yarn test

Launches the test runner in the interactive watch mode.


🦾 build

npm build

or

yarn build

Builds the app for production to the build folder.
It correctly bundles React in production mode and optimizes the build for the best performance.

The build is minified and the filenames include the hashes.


🧶 lint

npm lint

or

yarn lint

Creates a .eslintcache file in which ESLint cache is stored. Running this command can dramatically improve ESLint's running time by ensuring that only changed files are linted.


🎯 format

npm format

or

yarn format

Checks if your files are formatted. This command will output a human-friendly message and a list of unformatted files, if any.


🧬 Project structure

This is the structure of the files in the project:

    │
    ├── public                  # public files (favicon, .htaccess, manifest, ...)
    ├── src                     # source files
    │   ├── components
    │   ├── pages
    │   ├── resources           # images, constants and other static resources
    │   ├── store               # Redux store
    │   │   ├── actions         # store's actions
    │   │   └── reducers        # store's reducers
    │   ├── styles
    │   ├── tests               # all test files
    │   ├── types               # data interfaces
    │   ├── utility             # utilities functions and custom components
    │   ├── App.tsx
    │   ├── index.tsx
    │   ├── react-app-env.d.ts
    │   ├── RootComponent.tsx   # React component with all the routes
    │   ├── serviceWorker.ts
    │   └── setupTests.ts
    ├── .eslintrc.js
    ├── .gitignore
    ├── .prettierrc
    ├── package.json
    ├── README.md
    └── tsconfig.json

📖 Learn More

You can learn more in the Create React App documentation.

To learn React, check out the React documentation.

Bootstrapped with Create React App.