-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 932 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 932 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
34
35
36
37
38
{
"name": "wheelpixapi",
"version": "1.0.0",
"description": "WheelPixAPI is an Express API that provides vehicle photos using web scraping.",
"main": "index.js",
"scripts": {
"build": "tsc",
"start": "ts-node src/index.ts",
"dev": "tsc && node dist/core/app.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DonySCode/WheelPixAPI.git"
},
"keywords": [
"vehiclephotos",
"webscrapping",
"expressjs",
"modularmonolith"
],
"author": "Dony Castro",
"license": "ISC",
"bugs": {
"url": "https://github.com/DonySCode/WheelPixAPI/issues"
},
"homepage": "https://github.com/DonySCode/WheelPixAPI#readme",
"dependencies": {
"dotenv": "^16.4.5",
"express": "^4.21.1",
"puppeteer": "^23.9.0"
},
"devDependencies": {
"@types/express": "^5.0.0",
"@types/node": "^22.10.0",
"ts-node": "^10.9.2",
"typescript": "^5.7.2"
}
}