-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.02 KB
/
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
{
"name": "sendit",
"version": "1.0.0",
"description": "SendIT is a courier service that helps users deliver parcels to different destinations.",
"main": "app.js",
"scripts": {
"build": "nodemon ././dist/app.js",
"start": "babel ./src --out-dir dist",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/KoofNG/SendIT.git"
},
"keywords": [
"Courier",
"Service"
],
"author": "Israel Akpan - KoofNG\u001b[D\u001b[f\u001b[C\u001b[C",
"license": "MIT",
"bugs": {
"url": "https://github.com/KoofNG/SendIT/issues"
},
"homepage": "https://github.com/KoofNG/SendIT#readme",
"dependencies": {
"bcrypt": "^3.0.6",
"dotenv": "^8.0.0",
"express": "^4.16.4",
"pg": "^7.10.0"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"express-jwt": "^5.3.1",
"jsonwebtoken": "^8.5.1"
}
}