-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 989 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 989 Bytes
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
{
"name": "eva-3-api-rest-task",
"version": "1.0.0",
"description": "Rest API evaluation for the Business Applications Course",
"scripts": {
"start": "node ./dist/index.js",
"dev": "ts-node-dev --files src/index.ts",
"build": "tsc",
"typecheck": "tsc --noEmit",
"test": "echo \"Error: no test specified\" && exit 1",
"postinstall": "npm run build"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/bcryptjs": "2.4.2",
"@types/cors": "2.8.12",
"@types/express": "4.17.13",
"@types/jsonwebtoken": "8.5.8",
"@types/morgan": "1.9.3",
"@types/node": "^17.0.24",
"prisma": "^3.13.0",
"ts-node-dev": "^1.1.8",
"typescript": "^4.6.3"
},
"dependencies": {
"@prisma/client": "^3.13.0",
"bcryptjs": "2.4.3",
"cors": "2.8.5",
"dotenv": "16.0.0",
"express": "4.17.3",
"joi": "17.6.0",
"jsonwebtoken": "8.5.1",
"morgan": "1.10.0",
"mysql2": "2.3.3"
}
}