-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.17 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
{
"name": "atena_api_node",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"dependencies": {
"@prisma/client": "^4.0.0",
"@types/swagger-ui-express": "^4.1.3",
"axios": "^0.23.0",
"bcryptjs": "^2.4.3",
"celebrate": "^15.0.0",
"cors": "^2.8.5",
"date-fns": "^2.27.0",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-async-errors": "^3.1.1",
"google-auth-library": "^7.10.1",
"handlebars": "^4.7.7",
"jsonwebtoken": "^8.5.1",
"moment": "^2.29.1",
"nodemailer": "^6.7.2",
"swagger-ui-express": "^4.1.6",
"uuid": "^8.3.2"
},
"scripts": {
"start": "node dist/src/server.js",
"dev": "ts-node-dev --exit-child src/server.ts",
"migrate": "prisma migrate dev",
"studio": "prisma studio"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/bcryptjs": "^2.4.2",
"@types/cors": "^2.8.12",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.13",
"@types/joi": "^17.2.3",
"@types/jsonwebtoken": "^8.5.5",
"@types/moment": "^2.13.0",
"@types/nodemailer": "^6.4.4",
"prisma": "^4.0.0",
"ts-node-dev": "^1.1.8",
"typescript": "^4.4.4"
}
}