forked from invegat/Sprint-Challenge-Authentication
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 975 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 975 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
36
37
{
"name": "nodeauth-challenge",
"version": "1.0.0",
"description": "Authentication Sprint Challenge",
"main": "index.js",
"scripts": {
"server": "nodemon index.js",
"test": "cross-env DB_ENV=testing jest --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LambdaSchool/Sprint-Challenge-Authentication.git"
},
"keywords": [],
"author": "Lambda School",
"license": "ISC",
"bugs": {
"url": "https://github.com/LambdaSchool/Sprint-Challenge-Authentication/issues"
},
"homepage": "https://github.com/LambdaSchool/Sprint-Challenge-Authentication#readme",
"dependencies": {
"axios": "^0.19.0",
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"express": "^4.17.1",
"helmet": "^3.20.0",
"jsonwebtoken": "^8.5.1",
"knex": "^0.19.2",
"sqlite3": "^4.1.0"
},
"devDependencies": {
"cross-env": "^6.0.3",
"jest": "^24.9.0",
"nodemon": "^1.19.1",
"supertest": "^4.0.2"
}
}