-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.19 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": "fuel-stations-spain-api",
"version": "1.7.0",
"description": "REST API that provides realtime information about fuel prices in Spain",
"main": "index.js",
"scripts": {
"dev": "ts-node -r tsconfig-paths/register src/index.ts",
"build": "tsc && tsc-alias",
"start": "node dist/index.js",
"prepare": "ts-patch install"
},
"author": "JGeek00",
"license": "ISC",
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.21",
"@types/helmet": "^4.0.0",
"@types/node": "^22.6.1",
"@types/uuid": "^10.0.0",
"ts-patch": "^3.2.1",
"tsc-alias": "^1.8.10",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.6.2"
},
"dependencies": {
"@sentry/node": "^8.33.1",
"@sentry/profiling-node": "^8.33.1",
"@types/express-validator": "^3.0.0",
"axios": "^1.7.7",
"cors": "^2.8.5",
"cron": "^3.1.7",
"dotenv": "^16.4.5",
"express": "^4.21.0",
"express-validator": "^7.2.0",
"helmet": "^7.1.0",
"luxon": "^3.5.0",
"pg": "^8.13.0",
"sequelize": "^6.37.3",
"sqlite3": "^5.1.7",
"ts-node": "^10.9.2",
"typia": "^6.10.2",
"uuid": "^10.0.0"
}
}