test / package.json
NUb228's picture
Upload 11 files
f75b6aa
raw
history blame contribute delete
No virus
756 Bytes
{
"//1": "describes your app and its dependencies",
"//2": "https://docs.npmjs.com/files/package.json",
"//3": "updating this file will download and update your packages",
"name": "hello-express",
"version": "0.0.1",
"description": "A simple Node app built on Express, instantly up and running.",
"main": "server.js",
"scripts": {
"start": "node server.js"
},
"dependencies": {
"puppeteer": "^14.1.0",
"express": "^4.18.1",
"teeworlds": "^2.4.7",
"https": "^1.0.0",
"socket.io": "^4.5.4",
"ejs": "^3.1.8"
},
"engines": {
"node": "14.x"
},
"repository": {
"url": "https://glitch.com/edit/#!/hello-express"
},
"license": "MIT",
"keywords": [
"node",
"glitch",
"express"
]
}