-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.73 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
{
"name": "serverless-print-proxy",
"version": "2.0.5",
"description": "A Google Cloud Function for switching out quad words in print requests to ArcGIS Server",
"repository": "https://github.com/agrc/serverless-print-proxy",
"license": "MIT",
"author": "Scott Davis <[email protected]>",
"type": "module",
"main": "index.js",
"scripts": {
"format": "prettier . --write",
"lint": "eslint *.js",
"start": "concurrently \"npm:start:firestore\" \"FIRESTORE_EMULATOR_HOST=127.0.0.1:8081 NODE_ENV=development nodemon index.js\"",
"start:debug": "concurrently \"npm:start:firestore\" \"FIRESTORE_EMULATOR_HOST=127.0.0.1:8081 NODE_ENV=development DEBUG=http-proxy-middleware* nodemon index.js\"",
"start:firestore": "firebase emulators:start --import .emulator-data --export-on-exit --only firestore",
"start:prod": "NODE_ENV=production node index.js",
"test": "vitest",
"test:ci": "firebase emulators:exec --only firestore 'node scripts/seed-test-data.js && vitest'"
},
"prettier": {
"plugins": [
"prettier-plugin-organize-imports",
"prettier-plugin-packagejson"
],
"printWidth": 120,
"singleQuote": true
},
"dependencies": {
"@google-cloud/firestore": "^7.10.0",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.21.1",
"helmet": "^8.0.0",
"http-proxy-middleware": "^3.0.3"
},
"devDependencies": {
"@eslint/js": "^9.13.0",
"concurrently": "^9.0.1",
"eslint": "^9.13.0",
"eslint-config-prettier": "^9.1.0",
"firebase-tools": "^13.22.1",
"nodemon": "^3.1.7",
"prettier": "^3.3.3",
"prettier-plugin-organize-imports": "^4.1.0",
"prettier-plugin-packagejson": "^2.5.3",
"supertest": "^7.0.0",
"vitest": "^2.1.3"
}
}