mirror of
https://github.com/pawelmalak/flame.git
synced 2025-08-08 12:25:16 +02:00
Bumps [jsonwebtoken](https://github.com/auth0/node-jsonwebtoken) from 8.5.1 to 9.0.0. - [Release notes](https://github.com/auth0/node-jsonwebtoken/releases) - [Changelog](https://github.com/auth0/node-jsonwebtoken/blob/master/CHANGELOG.md) - [Commits](https://github.com/auth0/node-jsonwebtoken/compare/v8.5.1...v9.0.0) --- updated-dependencies: - dependency-name: jsonwebtoken dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com>
38 lines
1.2 KiB
JSON
38 lines
1.2 KiB
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",
|
|
"dir-init": "npx mkdirp data public && touch public/flame.css public/customQueries.json",
|
|
"dev-init": "npm run dir-init && npm run init-server && npm run init-client",
|
|
"dev-server": "nodemon server.js -e js",
|
|
"dev-client": "npm start --prefix client",
|
|
"dev": "concurrently \"npm run dev-server\" \"npm run dev-client\"",
|
|
"skaffold": "concurrently \"npm run init-client\" \"npm run dev-server\""
|
|
},
|
|
"author": "",
|
|
"license": "ISC",
|
|
"dependencies": {
|
|
"@kubernetes/client-node": "^0.15.1",
|
|
"@types/express": "^4.17.13",
|
|
"axios": "^0.24.0",
|
|
"concurrently": "^6.3.0",
|
|
"docker-secret": "^1.2.4",
|
|
"dotenv": "^10.0.0",
|
|
"express": "^4.17.1",
|
|
"jsonwebtoken": "^9.0.0",
|
|
"multer": "^1.4.3",
|
|
"node-schedule": "^2.0.0",
|
|
"sequelize": "^6.9.0",
|
|
"sqlite3": "^5.0.2",
|
|
"umzug": "^2.3.0",
|
|
"ws": "^8.2.3"
|
|
},
|
|
"devDependencies": {
|
|
"nodemon": "^2.0.14"
|
|
}
|
|
}
|