1
0
Fork 0
mirror of https://github.com/pawelmalak/flame.git synced 2025-08-03 09:55:18 +02:00

Initial commit

This commit is contained in:
unknown 2021-05-06 19:03:31 +02:00
commit 573814ddac
25 changed files with 18830 additions and 0 deletions

23
package.json Normal file
View file

@ -0,0 +1,23 @@
{
"name": "flame",
"version": "0.1.0",
"description": "Self-hosted start page",
"main": "index.js",
"scripts": {
"start": "node server.js",
"server": "nodemon server.js",
"client": "npm start --prefix client",
"dev": "concurrently \"npm run server\" \"npm run client\""
},
"author": "",
"license": "ISC",
"dependencies": {
"@types/express": "^4.17.11",
"concurrently": "^6.0.2",
"dotenv": "^9.0.0",
"express": "^4.17.1"
},
"devDependencies": {
"nodemon": "^2.0.7"
}
}