-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.2 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
41
{
"name": "findfreelance_api",
"version": "1.0.0",
"description": "FindFreelance Api is a REST API that allows companies to search for freelance accordinf to several criteria and propose them a mission.",
"main": "api.js",
"scripts": {
"dev": "nodemon ./src/api.js",
"build": "babel ./src -d ./dist",
"start": "node ./src/api.js",
"startbuild": "node ./dist/api.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/KevOneRedOne/FindFreelance_API.git"
},
"author": "Kevin Alves",
"license": "ISC",
"bugs": {
"url": "https://github.com/KevOneRedOne/FindFreelance_API/issues"
},
"homepage": "https://github.com/KevOneRedOne/FindFreelance_API#readme",
"dependencies": {
"bcrypt": "^5.1.0",
"body-parser": "^1.20.1",
"circular-json": "^0.5.9",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-validator": "^6.14.3",
"jsonwebtoken": "^9.0.0",
"mongoose": "^6.8.3",
"nodemailer": "^6.9.1"
},
"devDependencies": {
"@babel/cli": "^7.20.7",
"@babel/core": "^7.20.12",
"@babel/preset-env": "^7.20.2",
"nodemon": "^2.0.20"
}
}