-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.74 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
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "api-comuni-italiani",
"version": "1.0.3",
"description": "Node.js server based on the Express framework and on the MySQL database that returns the list of Italian regions, provinces and cities",
"main": "app.js",
"scripts": {
"start": "npm run dev",
"dev": "ts-node-dev --respawn ./src/app.ts",
"build": "npx prisma generate && tsc -p .",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/AntoninoBonanno/api-comuni-italiani"
},
"author": {
"name": "Antonino Bonanno",
"email": "[email protected]",
"url": "https://github.com/AntoninoBonanno"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/AntoninoBonanno/api-comuni-italiani/issues"
},
"homepage": "https://github.com/AntoninoBonanno/api-comuni-italiani#readme",
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/express-fileupload": "^1.1.7",
"@types/express-session": "^1.17.4",
"@types/morgan": "^1.9.3",
"@types/node": "^17.0.18",
"@typescript-eslint/eslint-plugin": "^5.12.0",
"@typescript-eslint/parser": "^5.12.0",
"prisma": "^3.8.1",
"ts-node-dev": "^1.1.8",
"typescript": "^4.4.3"
},
"dependencies": {
"@prisma/client": "^3.9.2",
"async-middleware": "^1.2.1",
"axios": "^0.28.0",
"cors": "^2.8.5",
"croner": "^4.1.95",
"dotenv": "^16.0.0",
"express": "^4.21.0",
"express-session": "^1.17.2",
"express-validator": "^6.12.1",
"helmet": "^5.0.2",
"http-status-codes": "^2.1.4",
"morgan": "^1.10.0",
"openid-client": "^5.1.3",
"winston": "^3.3.3",
"winston-daily-rotate-file": "^4.5.5",
"xlsx": "^0.18.2"
}
}