Facebook
From Tacky Earthworm, 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: 144
  1.  
  2. {
  3.   "//1": "describes your app and its dependencies",
  4.   "//2": "https://docs.npmjs.com/files/package.json",
  5.   "//3": "updating this file will download and update your packages",
  6.   "name": "hello-express",
  7.   "version": "0.0.1",
  8.   "description": "A simple Node app built on Express, instantly up and running.",
  9.   "main": "server.js",
  10.   "scripts": {
  11.     "start": "node server.js"
  12.   },
  13.   "dependencies": {
  14.     "express": "^4.17.1",
  15.     "mineflayer": "^2.23.0",
  16.     "quick.db": "^7.1.1"
  17.   },
  18.   "engines": {
  19.     "node": "14.x"
  20.   },
  21.   "repository": {
  22.     "url": "https://glitch.com/edit/#!/hello-express"
  23.   },
  24.   "license": "MIT",
  25.   "keywords": [
  26.     "node",
  27.     "glitch",
  28.     "express"
  29.   ]
  30. }
  31.  
  32.