-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.37 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
49
50
51
52
{
"name": "todo-api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest --no-cache",
"start": "node dist/src/infra/http/server.js",
"build": "rimraf dist/* && tsc -p tsconfig.json",
"start:dev": "ts-node-dev -r tsconfig-paths/register --transpile-only --trace-warnings --inspect --ignore-watch node_modules src/infra/http/server.ts"
},
"keywords": [
"Todo",
"API",
"Rest",
"Node",
"Typescript"
],
"author": "matheus-dr",
"license": "MIT",
"dependencies": {
"@prisma/client": "^3.15.2",
"@types/nodemailer": "^6.4.4",
"bcrypt": "^5.0.1",
"cors": "^2.8.5",
"dotenv-flow": "^3.2.0",
"express": "^4.18.1",
"jsonwebtoken": "^8.5.1",
"nodemailer": "^6.7.5",
"reflect-metadata": "^0.1.13",
"swagger-ui-express": "^4.4.0"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/cors": "^2.8.12",
"@types/dotenv-flow": "^3.2.0",
"@types/express": "^4.17.13",
"@types/jest": "^28.1.0",
"@types/jsonwebtoken": "^8.5.8",
"@types/node": "^17.0.39",
"@types/swagger-ui-express": "^4.1.3",
"@types/twilio": "^3.19.3",
"jest": "^28.1.0",
"prettier": "^2.6.2",
"prisma": "^3.15.2",
"rimraf": "^3.0.2",
"ts-node": "^10.8.1",
"ts-node-dev": "^2.0.0",
"tsconfig-paths": "^4.0.0",
"typescript": "^4.7.3"
}
}