forked from MCR-Digital/apprentice-boot-camp-databases
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 699 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 699 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
{
"name": "sequel-mart",
"version": "1.0.0",
"description": "Example of integrating a basic SQL relational database into a simple front-end website",
"main": "index.js",
"scripts": {
"start": "node backend/app.js",
"dev": "nodemon backend/app.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Tom-S82/sequel-mart.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Tom-S82/sequel-mart/issues"
},
"homepage": "https://github.com/Tom-S82/sequel-mart#readme",
"dependencies": {
"express": "^4.17.1",
"pg-promise": "^10.11.0"
},
"devDependencies": {
"nodemon": "^2.0.12"
}
}