-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.16 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.16 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
{
"name": "cloudflare-dns-swarm-manager",
"version": "1.0.0",
"main": "dist/app.js",
"license": "MIT",
"scripts": {
"build": "tsc",
"start": "node dist/app.js",
"dev": "ts-node-dev src/app.ts",
"lint": "eslint . --ext .ts",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage --coverageReporters=text-lcov > coverage/lcov.info",
"test:coverage-text": "jest --coverage --coverageReporters='text-summary' --coverageReporters='text'"
},
"dependencies": {
"axios": "^1.6.7",
"cli-table3": "^0.6.3",
"cloudflare": "^2.9.1",
"colorette": "^2.0.20",
"chalk": "^4.1.2",
"dockerode": "^4.0.0",
"dotenv": "^16.4.1",
"node-cron": "^3.0.3",
"uuid": "^9.0.1",
"winston": "^3.11.0",
"zod": "^3.24.2"
},
"devDependencies": {
"@types/dockerode": "^3.3.23",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.19",
"@types/uuid": "^9.0.8",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.56.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"ts-node-dev": "^2.0.0",
"typescript": "^5.3.3"
}
}