-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 874 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 874 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
31
32
33
34
35
{
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^11.0.0",
"express": "^4.17.2",
"jest": "^27.4.7",
"pg": "^8.7.1",
"sequelize": "^6.13.0",
"sequelize-cli": "^6.3.0",
"sqlite3": "^5.0.2",
"supertest": "^6.2.1"
},
"scripts": {
"test": "jest --verbose --coverage",
"start": "node index.js"
},
"name": "lib",
"version": "1.0.0",
"main": "server.js",
"keywords": [],
"author": "",
"license": "ISC",
"description": "Creating a basic-api-server to perform CRUD Operations on a database for code401 Lab 03",
"directories": {
"lib": "lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eriksavage/basic-api-server.git"
},
"bugs": {
"url": "https://github.com/eriksavage/basic-api-server/issues"
},
"homepage": "https://github.com/eriksavage/basic-api-server#readme"
}