This commit is contained in:
parent
1fc8a342b4
commit
965fec95ac
|
@ -5,7 +5,7 @@
|
||||||
"tasks": [
|
"tasks": [
|
||||||
{
|
{
|
||||||
"type": "npm",
|
"type": "npm",
|
||||||
"script": "develop",
|
"script": "start",
|
||||||
"group": {
|
"group": {
|
||||||
"kind": "build",
|
"kind": "build",
|
||||||
"isDefault": true
|
"isDefault": true
|
||||||
|
|
|
@ -20,7 +20,7 @@ Install [Node.js](https://nodejs.org/) and run:
|
||||||
|
|
||||||
```console
|
```console
|
||||||
$ npm install
|
$ npm install
|
||||||
$ npm develop
|
$ npm start
|
||||||
```
|
```
|
||||||
|
|
||||||
The web server will be running at `http://localhost:8000` and the email server at `smtp://localhost:2525`.
|
The web server will be running at `http://localhost:8000` and the email server at `smtp://localhost:2525`.
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
{
|
{
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"test": "tsc && jest && prettier --check 'src/**'",
|
"start": "concurrently \"tsc --watch\" \"nodemon lib\"",
|
||||||
"develop": "concurrently \"tsc --watch\" \"nodemon lib\""
|
"test": "tsc && jest && prettier --check 'src/**'"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"crypto-random-string": "^3.2.0",
|
"crypto-random-string": "^3.2.0",
|
||||||
|
|
Loading…
Reference in New Issue