Add depedencies. Add scripts

This commit is contained in:
Jimmy 2022-01-18 19:22:00 +13:00
parent d1cd9d5419
commit 0e3005b806
1 changed files with 11 additions and 2 deletions

View File

@ -5,7 +5,9 @@
"description": "Stencil App Starter",
"scripts": {
"build": "stencil build",
"start": "stencil build --dev --watch --serve",
"dev": "stencil build --dev --watch",
"server": "nodemon server/index.js 0.0.0.0 3000",
"start": "npm-run-all -p -r dev server",
"test": "stencil test --spec --e2e",
"test.watch": "stencil test --spec --e2e --watchAll",
"generate": "stencil generate"
@ -16,7 +18,14 @@
"@types/jest": "^26.0.24",
"jest": "^26.6.3",
"jest-cli": "^26.6.3",
"nodemon": "^2.0.15",
"npm-run-all": "^4.1.5",
"puppeteer": "^10.0.0"
},
"license": "MIT"
"license": "MIT",
"dependencies": {
"dotenv": "^14.2.0",
"eventsource": "^1.1.0",
"express": "^4.17.2"
}
}