-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.27 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.27 KB
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
{
"name": "milanbot",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"dev": "ts-node-dev -r tsconfig-paths/register src/index.ts",
"prebuild": "node -p \"'export const BOT_VERSION = ' + JSON.stringify(require('./package.json').version) + ';'\" > src/version.ts",
"build": "tsc",
"start": "node dist/index.js",
"test": "jest",
"e2e:cron": "concurrently 'npm run dev' 'json-server --watch ./test/data/api-football.json --port 4333'",
"scrape": "npx ts-node -r tsconfig-paths/register src/scraper/index.ts"
},
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^1.4.0",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"form-data": "^4.0.0",
"module-alias": "^2.2.3",
"node-schedule": "^2.1.1",
"pm2": "^5.3.0"
},
"devDependencies": {
"@swc/cli": "^0.1.62",
"@swc/core": "^1.3.76",
"@types/express": "^4.17.17",
"@types/jest": "^29.5.3",
"@types/module-alias": "^2.0.2",
"@types/node": "^20.4.10",
"@types/node-schedule": "^2.1.0",
"concurrently": "^8.2.1",
"jest": "^29.6.2",
"json-server": "^0.17.3",
"ts-jest": "^29.0.0-next.1",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.1.6"
}
}