-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 957 Bytes
/
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
{
"name": "macode-api",
"version": "1.0.0",
"description": "API desenvolvida para conectar o frontend ao banco de dados da aplicação",
"main": "index.js",
"scripts": {
"start": "nodemon src/server.ts",
"lint": "eslint --ext .js,.ts src --fix"
},
"keywords": ["backend", "api", "nodejs", "typescript", "javascript", "express"],
"author": "Guilherme Machado <machadofguilherme@proton.me>",
"license": "MIT",
"dependencies": {
"cors": "^2.8.5",
"express": "^4.18.2",
"joi": "^17.9.1",
"jsonwebtoken": "^9.0.0",
"mongoose": "^7.0.4",
"nodemon": "^2.0.22",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
},
"devDependencies": {
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/jsonwebtoken": "^9.0.1",
"@types/node": "^18.16.0",
"dotenv": "^16.0.3",
"eslint": "^8.39.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.27.5"
}
}