-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (30 loc) · 885 Bytes
/
package.json
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": "web-sprint-challenge-build-a-web-api",
"version": "0.0.1",
"main": "index.js",
"scripts": {
"start": "node index.js",
"server": "nodemon index.js",
"test": "cross-env NODE_ENV=testing jest --verbose --runInBand --silent",
"resetdb": "knex migrate:rollback && knex migrate:latest && knex seed:run"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BloomInstituteOfTechnology/web-sprint-challenge-build-a-web-api"
},
"dependencies": {
"express": "4.18.1",
"helmet": "5.0.2",
"knex": "2.0.0",
"sqlite3": "5.0.8"
},
"devDependencies": {
"cross-env": "7.0.3",
"eslint": "8.14.0",
"jest": "28.1.0",
"knex-cleaner": "1.3.1",
"nodemon": "^2.0.19",
"supertest": "6.2.3"
},
"license": "ISC"
}