-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 915 Bytes
/
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
{
"name": "google-image-collector",
"version": "1.0.0",
"description": "Collects images for the purpose of deep learning and image processing.",
"main": "dist/app/server.js",
"scripts": {
"start": "tsc; NODE_ENV=development node dist/app/server.js",
"dev": "tsc; NODE_ENV=development pm2 start dist/app/server.js --name"
},
"author": "Mohammad Mehradnia",
"license": "Apache-2.0",
"devDependencies": {
"@types/body-parser": "^1.19.5",
"@types/express": "^5.0.0",
"@types/jest": "^29.5.13",
"@typescript-eslint/eslint-plugin": "^8.10.0",
"@typescript-eslint/parser": "^8.10.0",
"eslint": "^9.13.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"prettier": "^3.3.3",
"typescript": "^5.6.3"
},
"dependencies": {
"axios": "^1.7.7",
"body-parser": "^1.20.3",
"dotenv": "^16.4.5",
"express": "^4.21.1"
}
}