Facebook
From YTBRGamer_xbee, 2 Years ago, written in JavaScript.
This paste is a reply to package.json aternos 7/24 from Minvoy - view diff
Embed
Download Paste or View Raw
Hits: 155
  1. {
  2.   "//1": "describes your app and its dependencies",
  3.   "//2": "https://docs.npmjs.com/files/package.json",
  4.   "//3": "updating this file will download and update your packages",
  5.   "name": "hello-express",
  6.   "version": "0.0.1",
  7.   "description": "A simple Node app built on Express, instantly up and running.",
  8.   "main": "server.js",
  9.   "scripts": {
  10.     "start": "node server.js"
  11.   },
  12.   "dependencies": {
  13.     "express": "^4.17.1",
  14.     "mineflayer": "^2.23.0",
  15.     "quick.db": "^7.1.1"
  16.   },
  17.   "engines": {
  18.     "node": "14.x"
  19.   },
  20.   "repository": {
  21.     "url": "https://glitch.com/edit/#!/hello-express"
  22.   },
  23.   "license": "MIT",
  24.   "keywords": [
  25.     "node",
  26.     "glitch",
  27.     "express"
  28.   ]
  29. }
  30.  
  31.