forked from BloomTech-Labs/ping-catcher-be
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.21 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.21 KB
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
38
39
40
41
42
43
44
45
{
"name": "ping-catcher-be",
"version": "1.0.0",
"description": "- Authentication.\r - Express Middleware.\r - Password Hashing.\r - Sessions\r - Cookies",
"main": "index.js",
"scripts": {
"server": "nodemon index.js",
"start": "node index.js",
"test": "cross-env NODE_ENV=testing jest --watch",
"coverage": "CI=true yarn test --coverage --watchAll=false || true"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Lambda-School-Labs/ping-catcher-be.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Lambda-School-Labs/ping-catcher-be/issues"
},
"homepage": "https://github.com/Lambda-School-Labs/ping-catcher-be",
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"connect-session-knex": "^1.6.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-session": "^1.17.1",
"helmet": "^3.22.0",
"jest": "^26.1.0",
"knex": "^0.21.0",
"knex-cleaner": "^1.3.0",
"pg": "^8.2.1",
"request": "^2.88.2"
},
"devDependencies": {
"cross-env": "^7.0.2",
"nodemon": "^2.0.3",
"supertest": "^4.0.2"
},
"jest": {
"testEnvironment": "node"
}
}