-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.4 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
76
77
78
79
{
"name": "grpc-microgen",
"version": "1.0.0",
"description": "microservices generator with gRPC architecture",
"main": "dist/index.js",
"scripts": {
"tsc": "tsc",
"build": "npm-run-all tsc copy",
"copy": "copyfiles -u 1 src/**/*.graphql dist",
"generate:server": "cross-env DEBUG=server* ts-node microgen",
"generate:proto": "cross-env DEBUG=server* ts-node microgen/proto.ts",
"clean:dist": "rimraf dist",
"clean:src": "rimraf src",
"server:dev": "cross-env DEBUG=server* NODE_ENV=development npm run start:watch",
"server:prod": "cross-env DEBUG=server* NODE_ENV=production npm-run-all clean:dist build clean:src start",
"start": "node .",
"start:watch": "nodemon",
"start:dev": "npm-run-all generate:proto generate:server server:dev",
"start:prod": "npm-run-all generate:proto generate:server server:prod",
"start:docker": "docker-compose up"
},
"_moduleAliases": {
"@app": "./dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/saefullohmaslul/gRPC-Microgen.git"
},
"keywords": [
"microservices",
"generator",
"gRPC"
],
"author": "Saefulloh Maslul",
"license": "MIT",
"bugs": {
"url": "https://github.com/saefullohmaslul/gRPC-Microgen/issues"
},
"homepage": "https://github.com/saefullohmaslul/gRPC-Microgen#readme",
"dependencies": {
"@types/capitalize": "^1.0.1",
"@types/debug": "^4.1.5",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.3",
"@types/fs-extra": "^8.1.0",
"@types/google-protobuf": "^3.7.2",
"@types/mongoose": "^5.7.7",
"@types/pluralize": "0.0.29",
"@types/rimraf": "^3.0.0",
"apollo-server-express": "^2.11.0",
"capitalize": "^2.0.3",
"copyfiles": "^2.2.0",
"cross-env": "^7.0.2",
"debug": "^4.1.1",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"fs-extra": "^9.0.0",
"google-protobuf": "^3.11.4",
"graphql": "^14.6.0",
"graphql-import-node": "0.0.4",
"graphql-tools": "^4.0.7",
"grpc": "^1.24.2",
"inversify": "^5.0.1",
"module-alias": "^2.2.2",
"mongoose": "^5.9.6",
"npm-run-all": "^4.1.5",
"pluralize": "^8.0.0",
"protoc-gen-grpc-ts": "^1.0.1",
"protocol-buffers-schema": "^3.4.0",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.2",
"tslib": "^1.11.1"
},
"devDependencies": {
"nodemon": "^2.0.2",
"ts-node": "^8.8.1",
"typescript": "^3.8.3"
}
}