-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.9 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.9 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
67
68
69
70
71
72
{
"name": "polymetis-node",
"version": "2.0.8",
"description": "Microservices development framework for NodeJS",
"main": "dist/index.js",
"scripts": {
"start": "node dist/index.js",
"start-ts": "ts-node --fast --transpileOnly src/index.ts",
"test": "mocha -r ts-node/register --timeout=20000 'test/**/*.test.ts'",
"build": "rm -rf dist && tsc --project ./tsconfig.json",
"clean": "rm -rf dist",
"lint": "node_modules/.bin/tslint --project ./tsconfig.json"
},
"bin": {
"create": "./bin/cli.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cavillo/polymetis-node.git"
},
"keywords": [
"microservice",
"microservices",
"nodejs",
"typescript",
"polymetis-node",
"polymetis"
],
"author": "cavillo",
"license": "MIT",
"devDependencies": {
"@types/amqplib": "^0.5.10",
"@types/axios": "^0.14.0",
"@types/chai": "4.1.7",
"@types/cors": "^2.8.4",
"@types/crypto-js": "^3.1.43",
"@types/dockerode": "^2.5.12",
"@types/dotenv": "^6.1.0",
"@types/express": "^4.16.0",
"@types/glob": "^7.1.1",
"@types/http-errors": "^1.8.0",
"@types/jwt-simple": "^0.5.33",
"@types/lodash": "^4.14.118",
"@types/mocha": "5.2.6",
"@types/node": "^10.14.13",
"chai": "^4.2.0",
"mocha": "^6.2.3",
"ts-node": "^8.8.1",
"tslint": "5.11.0",
"tslint-config-airbnb": "5.11.0",
"typescript": "^3.1.6"
},
"dependencies": {
"amqplib": "^0.8.0",
"axios": "^0.21.1",
"chalk": "^2.4.1",
"cors": "^2.8.5",
"crypto-js": "^3.1.9-1",
"dockerode": "^3.1.0",
"dotenv": "^6.1.0",
"express": "^4.16.4",
"glob": "^7.1.3",
"http-errors": "^1.8.0",
"jwt-simple": "^0.5.6",
"lodash": "^4.17.20",
"moment": "^2.24.0"
},
"bugs": {
"url": "https://github.com/cavillo/polymetis-node/issues"
},
"homepage": "https://cavillo.github.io/polymetis-node"
}