-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.09 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
{
"name": "server",
"version": "1.0.0",
"description": "Back-end da aplicação Feedget",
"main": "index.js",
"scripts": {
"test": "jest",
"build": "npx ttsc --p ./tsconfig.json",
"start": "node dist/server.js",
"dev": "ts-node-dev -r tsconfig-paths/register src/server.ts"
},
"keywords": [
"feedback",
"backend"
],
"author": "Marcelino Teixeira",
"license": "ISC",
"devDependencies": {
"@swc/jest": "^0.2.20",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/jest": "^27.5.0",
"@types/jsonwebtoken": "^8.5.8",
"@types/node": "^17.0.31",
"jest": "^28.1.0",
"prisma": "^3.13.0",
"ts-node": "^10.7.0",
"ts-node-dev": "^1.1.8",
"tsconfig-paths": "^4.0.0",
"ttypescript": "^1.5.13",
"typescript": "^4.6.4",
"typescript-transform-paths": "^3.3.1"
},
"dependencies": {
"@prisma/client": "^3.13.0",
"@types/nodemailer": "^6.4.4",
"axios": "^0.27.2",
"cors": "^2.8.5",
"express": "^4.18.1",
"jsonwebtoken": "^8.5.1",
"nodemailer": "^6.7.5",
"ts-mailgun": "^0.5.1"
}
}