🏘️🟠 Habitaclia Web App
Installation
To install the project depedencies for the first time execute:
npm run installlock
There are several scripts to manage dependencies:
-
npm run phoenix
: Remove thenode_modules
folder andpackage-lock.json
, and perform a clean installation. -
npm run installlock
: Install dependencies based on thepackage-lock.json
file. It could write topackage-lock.json
. -
npm run ci
: Install dependencies from thepackage-lock.json
file. Meant to be used in automated environments such as CI. It will never write topackage-lock.json
. -
npm run updatelock
: Updatepackage-lock.json
with the latest versions ofpackage.json
dependencies. It does not install dependencies. -
npm run fixlock
: Fixpackage-lock.json
issues. This is useful after merges. It does not install dependencies.