-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.21 KB
/
package.json
File metadata and controls
49 lines (49 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
46
47
48
49
{
"name": "geograpics-be",
"version": "1.0.0",
"description": "an app to help travel bloggers arrange their trip photos",
"main": "index.js",
"scripts": {
"server": "nodemon index.js",
"test": "cross-env jest --watch",
"start": "node index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Lambda-School-Labs/geograpics-be.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Lambda-School-Labs/geograpics-be/issues"
},
"homepage": "https://github.com/Lambda-School-Labs/geograpics-be#readme",
"devDependencies": {
"cross-env": "^5.2.1",
"jest": "^24.9.0",
"nodemon": "^1.19.2",
"supertest": "^4.0.2"
},
"dependencies": {
"axios": "^0.19.0",
"cors": "^2.8.5",
"dotenv": "^8.1.0",
"express": "^4.17.1",
"express-session": "^1.16.2",
"helmet": "^3.21.0",
"jsonwebtoken": "^8.5.1",
"knex": "^0.19.4",
"knex-cleaner": "^1.3.0",
"passport": "^0.4.0",
"passport-instagram": "^1.0.0",
"pg": "^7.12.1",
"pug": "^2.0.4",
"sqlite3": "^4.1.0",
"swagger-jsdoc": "^3.4.0",
"swagger-ui-express": "^4.1.1"
},
"jest": {
"testEnvironment": "node"
}
}