-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.25 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.25 KB
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
{
"name": "easylib",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
"test": "NODE_OPTIONS=--experimental-vm-modules jest",
"start": "node index.js",
"start_local": "echo use: $ npm run dev",
"dev": "node -r dotenv/config index.js",
"show-db-url": "dotenv -p DB_URL",
"mongosh": "dotenv -- sh -c 'mongosh $DB_URL '",
"clearBooklendings": "dotenv -- sh -c 'mongosh $DB_URL --eval \"db.booklendings.deleteMany({})\"'",
"clearBooks": "node ./scripts/clearBooks.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/2020-unitn-SE2/EasyLib.git"
},
"author": "Marco",
"license": "ISC",
"bugs": {
"url": "https://github.com/2020-unitn-SE2/EasyLib/issues"
},
"homepage": "https://github.com/2020-unitn-SE2/EasyLib#readme",
"dependencies": {
"cors": "^2.8.5",
"express": "^5.1.0",
"google-auth-library": "^10.5.0",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.19.4",
"swagger-ui-express": "^5.0.1"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"dotenv": "^17.2.3",
"dotenv-cli": "^11.0.0",
"gcp-metadata": "^5.3.0",
"jest": "^29.7.0",
"supertest": "^7.1.4"
},
"engines": {
"node": ">=22.0.0"
}
}