-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.33 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
44
45
46
{
"name": "processo-seletivo-sf-back-end",
"version": "1.0.0",
"description": "Processo seletivo para Student Facing - Módulo de Backend",
"main": "index.js",
"scripts": {
"dev": "nodemon --exec npx ts-node src/server.ts",
"build": "npx tsc",
"lint": "eslint ./src --ext .ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/betrybe/processo-seletivo-sf-back-end.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/betrybe/processo-seletivo-sf-back-end/issues"
},
"homepage": "https://github.com/betrybe/processo-seletivo-sf-back-end#readme",
"dependencies": {
"class-transformer": "^0.5.1",
"express": "^4.18.2",
"express-async-errors": "^3.1.1",
"jsonwebtoken": "^9.0.0",
"mongodb": "^3.7.3",
"mysql2": "3.2.0",
"sequelize": "6.29.3",
"typeorm": "^0.3.12",
"typescript": "^4.9.5"
},
"devDependencies": {
"@types/express": "^4.17.17",
"@types/jsonwebtoken": "^9.0.1",
"@typescript-eslint/eslint-plugin": "^5.54.1",
"eslint": "^8.35.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-plugin-mocha": "^10.1.0",
"eslint-plugin-sonarjs": "^0.18.0",
"nodemon": "^2.0.21",
"sequelize-cli": "6.6.0",
"ts-node": "^10.9.1"
}
}