-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.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": "template-backend",
"version": "1.0.0",
"author": "EngNet",
"description": "Repositório template para os Backends dos nossos projetos.",
"scripts": {
"dev": "nodemon --exec ts-node src/base/index.ts --watch src",
"dev:no-watch": "ts-node src/base/index.ts",
"build": "rimraf dist && tsc",
"start": "node dist/base/index.js"
},
"dependencies": {
"cors": "^2.8.5",
"dotenv-safe": "^8.2.0",
"express": "^4.18.2",
"express-async-errors": "^3.1.1",
"helmet": "^7.0.0",
"http-errors": "^2.0.0",
"morgan": "^1.10.0",
"mysql2": "^3.6.1",
"zod": "^3.22.2",
"zod-validation-error": "^1.5.0"
},
"devDependencies": {
"@types/cors": "^2.8.14",
"@types/dotenv-safe": "^8.1.2",
"@types/express": "^4.17.17",
"@types/http-errors": "^2.0.1",
"@types/morgan": "^1.9.6",
"@typescript-eslint/eslint-plugin": "^6.7.0",
"eslint": "^8.49.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-standard-with-typescript": "^39.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-n": "^16.1.0",
"eslint-plugin-promise": "^6.1.1",
"nodemon": "^3.0.1",
"prettier": "^3.0.3",
"rimraf": "^5.0.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
}
}