-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.25 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
42
43
{
"name": "busfind-crud",
"version": "1.0.0",
"description": "API para mapear o transporte público da cidade de São Paulo baseado nos dados da API Olho Vivo",
"main": "index.js",
"scripts": {
"clean": "rimraf ./dist",
"build": "tsc",
"dev": "nodemon src/index.ts --exec ts-node"
},
"author": "Ana Almeida",
"license": "ISC",
"devDependencies": {
"@types/express": "^4.17.7",
"@types/morgan": "^1.9.1",
"@types/mysql2": "github:types/mysql2",
"@types/swagger-jsdoc": "^3.0.2",
"@types/swagger-ui-express": "^4.1.2",
"@typescript-eslint/eslint-plugin": "^3.6.1",
"@typescript-eslint/parser": "^3.6.1",
"eslint": "^7.4.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"nodemon": "^2.0.4",
"prettier": "^2.0.5",
"ts-node": "^8.10.2",
"typescript": "^3.9.6"
},
"dependencies": {
"dotenv": "^8.2.0",
"express": "^4.18.2",
"morgan": "^1.10.0",
"mysql2": "^2.1.0",
"rimraf": "^3.0.2",
"swagger-jsdoc": "^4.0.0",
"swagger-ui-express": "^4.1.4"
}
}