Files
free-your-brain/README.md

27 lines
633 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

### Информация
- [Сайт проекта](https://vigdorov.github.io/free-your-brain)
- [Wiki](https://github.com/vigdorov/free-your-brain/wiki)
### Скрипты
```bash
# Установка\Обновление зависимостей
npm init
# Запуск приложения с открытием страницы
npm start
# Запуск приложения без открытия страницы
npm run dev
# Сборка приложения
npm run build
# Проверка кода линтером и проверка тайпингов
npm run lint
# Запуск тестов
npm run test
```