-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.23 KB
/
package.json
File metadata and controls
33 lines (33 loc) · 1.23 KB
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
30
31
32
33
{
"name": "Sprint-Challenge-RDBMS",
"version": "1.0.0",
"description": "This challenge allows you to practice the concepts and techniques learned over the past Sprint and apply them in a concrete project. This Sprint explored Adding Data Persistence to Web API's and you were taught the following modules: Introduction to Relational Databases and SQL, Inserting and Modifying Data, Querying Data; Migrations and Seeds and Introduction to Data Modeling. In your challenge for this Sprint, you will demonstrate proficiency by creating an API that pesist data to SQLite3.",
"main": "index.js",
"scripts": {
"start": "node index.js",
"server": "nodemon index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Alex-AK/Sprint-Challenge-RDBMS.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Alex-AK/Sprint-Challenge-RDBMS/issues"
},
"homepage": "https://github.com/Alex-AK/Sprint-Challenge-RDBMS#readme",
"devDependencies": {
"nodemon": "^1.18.10"
},
"dependencies": {
"dotenv": "^6.2.0",
"express": "^4.16.4",
"helmet": "^3.15.1",
"knex": "^0.16.3",
"morgan": "^1.9.1",
"pg": "^7.8.1",
"sqlite3": "^4.0.6"
}
}