-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.04 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
{
"name": "hero_api",
"version": "1.0.0",
"description": "",
"main": "src/index.ts",
"scripts": {
"register_user": "npx ts-node src/data/register_user.ts",
"build": "rimraf dist && npx tsc",
"prestart": "npm run build",
"start": "node dist/index.js",
"prejob": "npm run build",
"job": " npx ts-node src/crons/getHeroDataJob.ts",
"preserve": "npm run build",
"serve": "nodemon src/index.ts",
"test": "jest",
"test:watch": "jest --watchAll"
},
"author": "",
"license": "ISC",
"dependencies": {
"@types/node": "^20.11.10",
"axios": "^1.6.7",
"bcrypt": "^5.1.1",
"express": "^4.18.2",
"node-cron": "^3.0.3",
"pg": "^8.11.3",
"redis": "^4.6.12",
"rimraf": "^5.0.5",
"ts-node": "^10.9.2",
"typeorm": "^0.3.20",
"typescript": "^5.3.3"
},
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.11",
"@types/node-cron": "^3.0.11",
"jest": "^29.7.0",
"nodemon": "^3.0.3",
"ts-jest": "^29.1.2"
}
}