-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 770 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 770 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
{
"name": "apod-email-node",
"version": "1.0.1",
"description": "Node.js rebuild of APODEmail",
"main": "server.js",
"scripts": {
"start": "node server.js",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage"
},
"author": "",
"license": "ISC",
"dependencies": {
"@google-cloud/datastore": "^10.0.1",
"@google-cloud/tasks": "^6.2.1",
"axios": "^1.15.0",
"cheerio": "^1.1.2",
"dotenv": "^16.3.1",
"express": "^4.22.1",
"express-rate-limit": "^8.2.2",
"luxon": "^3.7.2",
"validator": "^13.15.26"
},
"devDependencies": {
"@vitest/coverage-v8": "^4.0.17",
"supertest": "^7.2.2",
"vitest": "^4.0.17"
},
"overrides": {
"protobufjs": "^7.5.4"
}
}