-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 2 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
58
59
60
61
62
63
64
65
{
"name": "roadkill-reporter-api",
"version": "1.0.3",
"private": true,
"description": "API for Utah Roadkill Reporter mobile app.",
"license": "MIT",
"author": "Scott Davis <[email protected]>",
"type": "module",
"main": "server.js",
"scripts": {
"lint": "eslint .",
"serve": "env-cmd nodemon server.js",
"setup:emulator": "firebase emulators:start --import=../../data/emulator-data --export-on-exit --only firestore,storage",
"start": "firebase emulators:exec --import=../../data/emulator-data --only firestore,storage --ui \"npm run serve\"",
"test": "env-cmd -f .env.test vitest",
"test:ci": "firebase emulators:exec --only firestore,storage \"npm test\""
},
"dependencies": {
"@google-cloud/cloud-sql-connector": "^1.6.0",
"@google-cloud/firestore": "^7.11.0",
"@google-cloud/logging-winston": "^6.0.0",
"@google-cloud/storage": "^7.15.0",
"@sendgrid/mail": "^8.1.4",
"apple-signin-auth": "^1.7.8",
"common": "file:../common",
"compression": "^1.7.5",
"cors": "^2.8.5",
"express": "^4.21.2",
"express-winston": "^4.2.0",
"fast-crc32c": "^2.0.0",
"helmet": "^8.0.0",
"humanize-duration": "^3.32.1",
"jsonwebtoken": "^9.0.2",
"jwks-rsa": "^3.1.0",
"jwt-decode": "^4.0.0",
"knex": "^3.1.0",
"ky": "^1.7.4",
"mime": "^4.0.6",
"multer": "^1.4.5-lts.1",
"pg": "^8.13.1",
"semver": "^7.6.3",
"sharp": "^0.33.5",
"uuid": "^11.0.5",
"winston": "^3.17.0",
"yup": "^1.6.1"
},
"devDependencies": {
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.18.0",
"env-cmd": "^10.1.0",
"eslint": "^9.18.0",
"eslint-config-prettier": "^10.0.1",
"firebase-tools": "^13.29.1",
"form-urlencoded": "^6.1.5",
"globals": "^15.14.0",
"msw": "^2.7.0",
"nodemon": "^3.1.9",
"prettier": "^3.4.2",
"prettier-plugin-organize-imports": "^4.1.0",
"prettier-plugin-packagejson": "^2.5.8",
"supertest": "^7.0.0",
"typescript": "^5.7.3",
"vitest": "^3.0.2"
}
}