-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 861 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
31
32
33
34
{
"name": "authentication-and-testing",
"version": "0.0.1",
"main": "index.js",
"scripts": {
"start": "node index.js",
"server": "nodemon index.js",
"migrate": "knex migrate:latest",
"test": "cross-env NODE_ENV=testing jest --verbose --runInBand --silent"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BloomInstituteOfTechnology/web-sprint-challenge-authentication-and-testing.git"
},
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"cors": "2.8.5",
"express": "4.18.1",
"helmet": "5.0.2",
"jsonwebtoken": "^8.5.1",
"knex": "2.0.0",
"sqlite3": "5.0.8"
},
"devDependencies": {
"@types/jest": "27.5.0",
"bcrypt": "^5.0.1",
"cross-env": "7.0.3",
"eslint": "8.14.0",
"jest": "28.1.0",
"nodemon": "^2.0.16",
"supertest": "6.2.3"
}
}