-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 765 Bytes
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 765 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": "DreamNotes",
"version": "0.0.1",
"description": "A simple note-taking Node app with SQLite as a database management system, instantly up and running. There are many note-taking apps but this one is mine.",
"main": "server.js",
"scripts": {
"start": "node server.js"
},
"dependencies": {
"express": "^4.16.3",
"sqlite3": "^4.0.8",
"angular": "^1.7.8"
},
"engines": {
"node": "8.x"
},
"repository": {
"url": "https://glitch.com/edit/#!/DreamNotes"
},
"license": "MIT",
"keywords": [
"node",
"glitch",
"express"
]
}