-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.02 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.02 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
{
"name": "onepush_backend",
"version": "1.0.0",
"description": "Backend for OnePush app",
"main": "src/server.js",
"scripts": {
"start": "node src/server.js",
"test": "npm run test",
"dev": "nodemon src/server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/S3Prototype/onepush_backend.git"
},
"keywords": [
"onepush",
"app",
"s3prototype",
"shaquilhansford"
],
"author": "shaquil hansford",
"license": "ISC",
"bugs": {
"url": "https://github.com/S3Prototype/onepush_backend/issues"
},
"homepage": "https://github.com/S3Prototype/onepush_backend#readme",
"dependencies": {
"bcryptjs": "^2.4.3",
"cookie-parser": "^1.4.5",
"express": "^4.17.1",
"express-session": "^1.17.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.12.7",
"node-fetch": "^2.6.1",
"nodemon": "^2.0.7",
"passport": "^0.4.1",
"passport-local": "^1.0.0"
},
"devDependencies": {
"@tryghost/admin-api": "^1.4.0",
"cors": "^2.8.5"
}
}