-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.96 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.96 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
60
61
62
63
64
65
66
{
"name": "timer-worker",
"version": "1.0.0-development.2",
"description": "stand alone application to execute timer nodes",
"main": "src/server.ts",
"scripts": {
"test": "jest",
"start": "node dist/server.js",
"dev": "ts-node-dev --transpile-only src/server.ts",
"prebuild": "node -p \"'export const PACKAGE_VERSION = ' + JSON.stringify(require('./package.json').version) + ';'\" > src/version.ts",
"build": "tsc",
"lint": "npx eslint **/*.ts --ignore-pattern node_modules/ --fix",
"get-version": "echo $npm_package_version",
"release": "semantic-release"
},
"repository": {
"type": "git",
"url": "git+https://github.com/flow-build/timer-worker.git"
},
"keywords": [
"flowbuild",
"redis"
],
"author": "FDTE-DSD",
"license": "MIT",
"bugs": {
"url": "https://github.com/flow-build/timer-worker/issues"
},
"homepage": "https://github.com/flow-build/timer-worker#readme",
"dependencies": {
"@koa/router": "12.0.0",
"ajv": "8.12.0",
"ajv-formats": "2.1.1",
"axios": "1.3.5",
"bullmq": "3.10.4",
"dotenv": "16.0.3",
"iso8601-duration": "2.1.1",
"koa": "2.14.1",
"koa-bodyparser": "4.4.0",
"koa-logger": "3.2.1",
"koa-logger-winston": "0.0.2",
"koa2-cors": "2.0.6",
"winston": "3.8.2"
},
"devDependencies": {
"@semantic-release/changelog": "6.0.3",
"@semantic-release/git": "10.0.1",
"@semantic-release/npm": "10.0.2",
"@types/jest": "^29.5.0",
"@types/koa": "2.13.6",
"@types/koa__router": "12.0.0",
"@types/koa-bodyparser": "4.3.10",
"@types/koa2-cors": "2.0.2",
"@types/node": "18.15.11",
"@typescript-eslint/eslint-plugin": "5.57.1",
"@typescript-eslint/parser": "5.57.1",
"conventional-changelog-conventionalcommits": "5.0.0",
"eslint": "8.37.0",
"jest": "29.5.0",
"semantic-release": "21.0.1",
"ts-jest": "^29.1.0",
"ts-node": "10.9.1",
"ts-node-dev": "2.0.0",
"typescript": "5.0.3"
}
}