-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 896 Bytes
/
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
{
"name": "yourOffice-backend",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/GabrielPrediger/yourOffice-backend.git",
"author": "Gabriel Prediger <[email protected]>",
"license": "MIT",
"scripts": {
"dev": "ts-node-dev --exit-child --transpile-only --ignore-watch node_modules src/server.ts"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/date-fns": "^2.6.0",
"@types/express": "^4.17.13",
"@types/jsonwebtoken": "^8.5.9",
"prisma": "^4.2.1",
"ts-node-dev": "^2.0.0",
"typescript": "^4.7.4"
},
"dependencies": {
"@prisma/client": "^4.2.1",
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"date-fns": "^2.29.2",
"dayjs": "^1.11.6",
"dotenv": "^16.0.3",
"express": "^4.18.1",
"express-async-errors": "^3.1.1",
"jsonwebtoken": "^8.5.1"
}
}