-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.25 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.25 KB
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": "techrate_api",
"version": "1.0.0",
"description": "API do projeto TechRate - SouJunior Lab",
"main": "server.js",
"scripts": {
"build": "tsc",
"start": "node dist/server.js",
"dev": "tsnd --transpile-only --watch --respawn --ignore-watch node_modules src/server.ts",
"test": "vitest --no-watch",
"prepare": "husky install",
"lint": "eslint"
},
"author": "",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^17.5.0",
"@commitlint/config-conventional": "^17.4.4",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/jsonwebtoken": "^9.0.3",
"@types/node": "^18.15.9",
"@types/nodemailer": "^6.4.11",
"@typescript-eslint/eslint-plugin": "^5.56.0",
"@typescript-eslint/parser": "^5.56.0",
"eslint": "^8.36.0",
"express": "^4.18.2",
"husky": "^8.0.0",
"lint-staged": "^13.2.0",
"prettier": "^2.8.7",
"ts-node-dev": "^2.0.0",
"typescript": "^5.0.2",
"vitest": "^0.32.2"
},
"dependencies": {
"@prisma/client": "^5.2.0",
"@types/bcrypt": "^5.0.0",
"@types/dotenv": "^8.2.0",
"bcrypt": "^5.1.1",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"jsonwebtoken": "^9.0.2",
"nodemailer": "^6.9.5",
"prisma": "^5.2.0"
}
}