-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
43 lines (43 loc) · 1007 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
35
36
37
38
39
40
41
42
43
{
"name": "bucket-list-appbackend",
"version": "1.0.0",
"description": "(Back end)An app for keeping track of all your bucket list goals",
"main": "index.js",
"scripts": {
"server": "nodemon index.js",
"test": "jest --watch",
"start": "node index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bucket-list-app/backend.git"
},
"keywords": [],
"author": "Christopher Totor and Chaz Rowe",
"license": "ISC",
"homepage": "https://github.com/bucket-list-app/backend",
"dependencies": {
"axios": "^0.19.0",
"bcryptjs": "^2.4.3",
"connect-session-knex": "^1.4.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"express-session": "^1.16.2",
"global": "^4.4.0",
"helmet": "^3.20.0",
"heroku": "^7.29.0",
"jsonwebtoken": "^8.5.1",
"knex": "^0.19.2",
"nodemon": "^1.19.2",
"pg": "^7.12.1",
"sqlite": "^3.0.3",
"sqlite3": "^4.1.0"
},
"devDependencies": {
"jest": "^24.9.0",
"supertest": "^4.0.2"
},
"jest": {
"testEnvironment": "node"
}
}