This repository has been archived by the owner on Oct 26, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.84 KB
/
package.json
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
67
68
69
70
71
72
{
"name": "@keawade/framethework",
"version": "0.4.2",
"description": "Microservices framework built on NATS",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"bin": {
"framethework-runner": "dist/bin/framethework-runner.js",
"framethework": "dist/bin/framethework-runner.js"
},
"scripts": {
"build": "tsc",
"bump": "npm --no-git-tag-version version",
"runner": "node -r ts-node/register src/bin/framethework-runner.ts",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"test": "jest",
"up": "docker-compose up -d"
},
"repository": {
"type": "git",
"url": "https://github.com/keawade/framethework.git"
},
"keywords": [
"microservices",
"nats",
"framework"
],
"author": {
"name": "Keith Wade",
"email": "keawade@protonmail.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/keawade/framethework/issues"
},
"homepage": "https://github.com/keawade/framethework#readme",
"dependencies": {
"cuid": "^2.1.8",
"date-fns": "^2.16.1",
"globby": "^11.0.2",
"reflect-metadata": "^0.1.13",
"ts-nats": "^1.2.15",
"winston": "^3.3.3",
"yargs": "^16.2.0"
},
"devDependencies": {
"@types/jest": "^26.0.20",
"@types/node": "^14.14.25",
"@types/validator": "^13.1.3",
"@types/yargs": "^16.0.0",
"@typescript-eslint/eslint-plugin": "^4.14.1",
"@typescript-eslint/parser": "^4.14.1",
"dotenv": "^8.2.0",
"eslint": "^7.18.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-node": "^11.1.0",
"jest": "^26.6.3",
"ts-jest": "^26.4.4",
"ts-node": "^9.1.1",
"typescript": "^4.1.3",
"validator": "^13.5.2"
},
"engines": {
"node": ">12"
}
}