-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 973 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 973 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
39
40
41
42
{
"name": "prova-node",
"version": "1.0.0",
"description": "Server Node.js con Express e integrazione TMDB",
"main": "server.js",
"scripts": {
"start": "node server.js",
"dev": "nodemon server.js",
"lint": "eslint .",
"test": "echo \"Nessun test configurato\" && exit 0"
},
"keywords": [
"node",
"express",
"tmdb",
"api"
],
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^1.12.2",
"bcrypt": "^6.0.0",
"cors": "^2.8.5",
"dotenv": "^17.2.3",
"express": "^5.1.0",
"jsonwebtoken": "^9.0.2",
"l": "^0.6.0",
"mongoose": "^8.19.1"
},
"devDependencies": {
"eslint": "^9.0.0",
"nodemon": "^3.1.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GiorgioFormiggini/node-prova.git"
},
"bugs": {
"url": "https://github.com/GiorgioFormiggini/node-prova/issues"
},
"homepage": "https://github.com/GiorgioFormiggini/node-prova#readme"
}