-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.07 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
{
"name": "portfolio-api",
"version": "1.0.0",
"type": "module",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node --no-warnings=ExperimentalWarning --loader ts-node/esm src/server.ts",
"dev": "nodemon --exec node --no-warnings=ExperimentalWarning --loader ts-node/esm src/server.ts",
"build": "npx tsc",
"lint": "eslint src/**/*.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@eslint/js": "^9.3.0",
"@types/bcryptjs": "^2.4.6",
"@types/express": "^4.17.21",
"@types/jsonwebtoken": "^9.0.6",
"@types/morgan": "^1.9.9",
"@types/node": "^20.12.13",
"eslint": "^8.56.0",
"globals": "^15.3.0",
"nodemon": "^3.1.2",
"prisma": "^5.14.0",
"typescript": "^5.4.5",
"typescript-eslint": "^7.11.0"
},
"dependencies": {
"@prisma/client": "^5.15.0",
"bcryptjs": "^2.4.3",
"express": "^4.19.2",
"helmet": "^7.1.0",
"jsonwebtoken": "^9.0.2",
"morgan": "^1.10.0",
"ts-node": "^10.9.2"
}
}