-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.4 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
47
48
{
"author": "Bruno Alves",
"name": "express-sequelize-template",
"version": "1.3.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"dev": "ts-node-dev -r dotenv/config -r tsconfig-paths/register --transpile-only --respawn --ignore-watch node_modules index.ts",
"build": "tsc",
"start": "node ./dist/index.js"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/jsonwebtoken": "^8.5.8",
"@types/nodemailer": "^6.4.4",
"@types/swagger-jsdoc": "^6.0.1",
"@types/swagger-ui-express": "^4.1.3",
"@typescript-eslint/eslint-plugin": "^5.27.0",
"@typescript-eslint/parser": "^5.27.0",
"babel-eslint": "^10.1.0",
"eslint": "^7.32.0 || ^8.2.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.6.2",
"sequelize-cli": "^6.4.1",
"sucrase": "^3.21.0",
"ts-node-dev": "^2.0.0",
"typescript": "^4.7.3"
},
"dependencies": {
"@types/node": "^17.0.40",
"axios": "^0.27.2",
"bcrypt": "^5.0.1",
"cors": "^2.8.5",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"jsonwebtoken": "^8.5.1",
"mysql2": "^2.3.3",
"nodemailer": "^6.7.5",
"sequelize": "^6.19.0",
"swagger-jsdoc": "^6.2.1",
"swagger-ui-express": "^4.4.0"
}
}