-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
39 lines (39 loc) · 1.01 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
{
"name": "restapi-2",
"version": "0.0.1",
"dependencies": {
"@prisma/client": "^5.18.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"helmet": "^7.1.0",
"jsonwebtoken": "^9.0.2",
"morgan": "^1.10.0",
"nodemailer": "^6.9.14",
"ts-node": "^10.9.1"
},
"main": "src/index.ts",
"scripts": {
"setup": "npm install",
"dev": "nodemon src/index.ts",
"build": "rm -rf build/ && prettier --write source/ && tsc",
"start": "ts-node src/index.ts"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jsonwebtoken": "^9.0.6",
"@types/morgan": "^1.9.9",
"@types/node": "^18.19.44",
"@types/nodemailer": "^6.4.15",
"@typescript-eslint/eslint-plugin": "^8.1.0",
"@typescript-eslint/parser": "^8.1.0",
"eslint": "^9.9.0",
"nodemon": "^3.1.4",
"prisma": "^5.18.0",
"typescript": "^5.5.4"
}
}