-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
75 lines (75 loc) · 2.5 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
73
74
75
{
"name": "@micro.ts/core",
"version": "0.1.9",
"description": "Microservice framework with Typescript",
"main": "lib/index.js",
"scripts": {
"start": "npx ts-node --project=tsconfig.playground.json ./playground/playground.ts",
"update": "npx npm-auto-version && node update-version.js && npm run build && npm run commit:version && npm run push && cd lib && npm publish",
"pack": "npm run prepack && cd lib && npm pack",
"prepack": "npm run clean && npm run build",
"commit:version": "git add . && git commit -m 'version' && git push origin master",
"push": "git push origin --tags",
"dev": "nodemon",
"build": "./node_modules/typescript/bin/tsc -p tsconfig.json && cp package-production.json ./lib/package.json",
"build:watch": "./node_modules/typescript/bin/tsc -w -p tsconfig.json",
"lint": "./node_modules/tslint/bin/tslint -t stylish --project \"tsconfig.json\"",
"test": "./node_modules/.bin/mocha -r ts-node/register tests/**/*.spec.ts",
"clean": "./node_modules/rimraf/bin.js lib"
},
"keywords": [],
"author": "Elis Vathi",
"license": "MIT",
"dependencies": {
"chalk": "^2.4.2",
"config": "^3.3.1",
"joi-to-swagger": "^6.0.1",
"joi-typescript-validator": "^0.2.0",
"openapi-types": "^1.3.5",
"reflect-metadata": "^0.1.13"
},
"devDependencies": {
"@hapi/hapi": "20.0.0",
"@types/amqplib": "^0.5.13",
"@types/axios": "^0.14.0",
"@types/chai": "^4.2.11",
"@types/chalk": "^2.2.0",
"@types/config": "0.0.35",
"@types/express": "^4.17.4",
"@types/hapi__hapi": "^20.0.0",
"@types/ioredis": "^4.14.9",
"@types/koa": "^2.11.3",
"@types/koa-bodyparser": "^4.3.0",
"@types/koa-router": "^7.4.0",
"@types/mime-db": "^1.43.0",
"@types/mocha": "^5.2.7",
"@types/node": "^12.12.34",
"@types/reflect-metadata": "^0.1.0",
"@types/socket.io": "^2.1.4",
"@types/uuid": "^8.3.0",
"amqplib": "^0.5.5",
"axios": "^0.19.2",
"chai": "^4.2.0",
"express": "^4.17.1",
"fastify": "^2.13.0",
"ioredis": "^4.16.1",
"joi": "^17.6.0",
"koa": "^2.10.0",
"koa-bodyparser": "^4.3.0",
"koa-router": "^7.4.0",
"mocha": "^5.2.0",
"nodemon": "^1.19.4",
"npm-auto-version": "^1.0.0",
"rimraf": "^2.6.3",
"socket.io": "^2.3.0",
"ts-node": "^8.8.1",
"tslint": "^5.20.1",
"typeorm": "^0.2.24",
"typescript": "^3.8.3",
"uuid": "^8.3.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/elisvathi/micro.ts.git"
}
}