flame/package.json
dependabot[bot] a8217e2632
Bump ws from 7.4.5 to 7.4.6
Bumps [ws](https://github.com/websockets/ws) from 7.4.5 to 7.4.6.
- [Release notes](https://github.com/websockets/ws/releases)
- [Commits](https://github.com/websockets/ws/compare/7.4.5...7.4.6)

---
updated-dependencies:
- dependency-name: ws
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
2021-06-08 23:22:59 +00:00

33 lines
914 B
JSON

{
"name": "flame",
"version": "0.1.0",
"description": "Self-hosted start page",
"main": "index.js",
"scripts": {
"start": "node server.js",
"init-server": "echo Instaling server dependencies && npm install",
"init-client": "cd client && echo Instaling client dependencies && npm install",
"dev-init": "npm run init-server && npm run init-client",
"dev-server": "nodemon server.js",
"dev-client": "npm start --prefix client",
"dev": "concurrently \"npm run dev-server\" \"npm run dev-client\""
},
"author": "",
"license": "ISC",
"dependencies": {
"@types/express": "^4.17.11",
"axios": "^0.21.1",
"colors": "^1.4.0",
"concurrently": "^6.0.2",
"dotenv": "^9.0.0",
"express": "^4.17.1",
"node-schedule": "^2.0.0",
"sequelize": "^6.6.2",
"sqlite3": "^5.0.2",
"ws": "^7.4.6"
},
"devDependencies": {
"nodemon": "^2.0.7"
}
}