-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.35 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
{
"name": "eaglelizard-api",
"version": "1.0.0",
"description": "",
"main": ".eslintrc.js",
"scripts": {
"start": "node --optimize_for_size --max_old_space_size=230 index.js",
"build": "rm -rf ./dist && tsc",
"dev": "nodemon -e ts,json,js --watch \"./dist/**/*\" --exec \"npm start\"",
"db:create": "node dist/db/create-db.js",
"clear-image-cache": "rm ./image_cache/*",
"lint": "eslint src",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC",
"dependencies": {
"@aws-sdk/client-s3": "^3.282.0",
"@google-cloud/datastore": "^8.5.0",
"@google-cloud/logging-winston": "^6.0.0",
"@google-cloud/secret-manager": "^5.1.0",
"@google-cloud/storage": "^7.7.0",
"date-fns": "^4.1.0",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"lodash.isequal": "^4.5.0",
"morgan": "^1.10.0",
"nodemon": "^3.1.0",
"sharp": "^0.33.2",
"source-map-support": "^0.5.21",
"winston": "^3.3.3"
},
"devDependencies": {
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.13",
"@types/lodash.isequal": "^4.5.6",
"@types/morgan": "^1.9.3",
"@types/node": "^20.16.10",
"@types/sharp": "^0.29.4",
"@types/source-map-support": "^0.5.4",
"@typescript-eslint/eslint-plugin": "^8.7.0",
"eslint": "^8.57.1",
"typescript": "^5.7.2"
}
}