-
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) · 1010 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 1010 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": "kickbase-autodecline",
"version": "1.0.3",
"description": "Automatic decline of too low offers in the Kickbase game",
"main": "index.js",
"scripts": {
"start:build": "npx tsc -w -p tsconfig.json",
"start:run": "nodemon build/index.js",
"dev": "concurrently npm:start:*",
"build": "tsc -p tsconfig-build.json",
"start:test": "jest --watch",
"test": "jest",
"start": "node dist/index.js"
},
"author": "Ronny Klein",
"license": "ISC",
"devDependencies": {
"@types/jest": "^29.5.13",
"concurrently": "^9.0.1",
"dotenv": "^16.4.5",
"jest": "^29.7.0",
"nodemon": "^3.1.7",
"ts-jest": "^29.2.5"
},
"dependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"@types/morgan": "^1.9.9",
"@types/node-schedule": "^2.1.7",
"axios": "^1.7.7",
"cheerio": "^1.0.0",
"cors": "^2.8.5",
"express": "^4.21.0",
"morgan": "^1.10.0",
"node-schedule": "^2.1.1",
"typescript": "^5.6.2"
}
}