-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.59 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.59 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "barky",
"version": "1.9.0",
"description": "A simple cloud services watchdog with digest notification support & no external dependencies",
"homepage": "https://github.com/Rohland/barky#readme",
"main": "dist/src/cli.js",
"type": "module",
"scripts": {
"prebuild": "rm -rf ./dist && mkdir dist",
"build": "tsc --build",
"postbuild": "cp package.json dist/package.json && copyfiles 'src/**/web/views/**' dist",
"start": "tsx src/cli.ts",
"start:run": "tsx src/cli.ts run",
"start:loop": "tsx src/cli.ts loop",
"pretest": "tsc",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js --coverage"
},
"keywords": [],
"author": "",
"license": "MIT",
"dependencies": {
"@nestjs/common": "^11.1.28",
"@nestjs/core": "^11.1.28",
"@nestjs/platform-express": "^11.1.28",
"axios": "^1.18.1",
"better-sqlite3": "^12.11.1",
"dotenv": "^17.4.2",
"form-data": "^4.0.6",
"knex": "^3.3.0",
"lodash": "^4.18.1",
"mysql2": "^3.23.2",
"tslib": "^2.8.1",
"tsx": "^4.23.1",
"uuid": "^14.0.1",
"yaml": "^2.9.0",
"yargs": "^18.1.0"
},
"devDependencies": {
"@faker-js/faker": "^10.5.0",
"@types/express": "^5.0.5",
"@types/jest": "^30.0.0",
"@types/node": "^25.9.5",
"copyfiles": "^2.4.1",
"jest": "^30.4.2",
"jest-mock-console": "^2.0.0",
"ts-jest": "^29.4.12",
"typescript": "^6.0.3"
},
"bin": {
"barky": "dist/src/cli.js"
},
"files": [
"dist/**/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Rohland/barky.git"
}
}