-
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) · 880 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 880 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": "30doc-be",
"version": "1.0.0",
"description": "Backend for 30 Days of Code App",
"main": "server.js",
"scripts": {
"test": "jest",
"start": "node src/server",
"start:dev": "nodemon src/server"
},
"repository": {
"type": "git",
"url": "git+https://github.com/30DaysOfCode/node-be.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/30DaysOfCode/node-be/issues"
},
"homepage": "https://github.com/30DaysOfCode/node-be#readme",
"dependencies": {
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"express": "^4.17.1",
"joi": "^17.4.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.11.14",
"mongoose-sequence": "^5.3.1",
"paystack": "^2.0.1"
},
"devDependencies": {
"jest": "^26.6.3",
"nodemon": "^2.0.7",
"supertest": "^6.1.3"
}
}