-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (29 loc) · 717 Bytes
/
package.json
File metadata and controls
30 lines (29 loc) · 717 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{
"//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-sqlite",
"version": "0.0.1",
"description": "A simple Node app with SQLite as a database management system, instantly up and running.",
"main": "server.js",
"scripts": {
"start": "node server.js"
},
"dependencies": {
"discord.js": "^12.3.1",
"sqlite3": "^4.1.1"
},
"engines": {
"node": "12.x"
},
"repository": {
"url": "https://github.com/brianseminara/discord-bot-template"
},
"license": "MIT",
"keywords": [
"node",
"glitch",
"discord bot",
"express"
]
}