forked from lightofdavinci/Sprint-Challenge-RDBMS
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 890 Bytes
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 890 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
30
{
"name": "Sprint-Challenge-RDBMS",
"version": "1.0.0",
"description": "The purpose of this exercise is to get you used to being quizzed on _interview questions_ commonly asked about Relational Database Management Systems and SQL.",
"main": "index.js",
"scripts": {
"server": "nodemon index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kyranmccann/Sprint-Challenge-RDBMS.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/kyranmccann/Sprint-Challenge-RDBMS/issues"
},
"homepage": "https://github.com/kyranmccann/Sprint-Challenge-RDBMS#readme",
"dependencies": {
"express": "^4.16.4",
"helmet": "^3.15.0",
"knex": "^0.15.2",
"sqlite3": "^4.0.4"
},
"devDependencies": {
"nodemon": "^1.18.6"
}
}