-
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) · 855 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 855 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
{
"name": "tutory-backend",
"version": "1.0.0",
"description": "Database and Server for Tutory Q2 project",
"main": "knexfile.js",
"directories": {
"test": "test"
},
"scripts": {
"dev-server": "nodemon src/app.js",
"knex": "knex",
"migrate": "knex migrate:latest",
"rollback": "knex migrate:rollback",
"seed": "knex seed:run",
"test": "NODE_ENV=testing mocha --recursive",
"start": "node src/app.js"
},
"author": "Nate Semmler, Branden Lowe, Jewell White",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.3",
"cors": "^2.8.4",
"express": "^4.16.3",
"jsonwebtoken": "^8.3.0",
"knex": "^0.15.2",
"morgan": "^1.9.0",
"pg": "^7.4.3"
},
"devDependencies": {
"dotenv": "^6.0.0",
"nodemon": "^1.18.3",
"run-all": "^1.0.1"
}
}